diff options
author | Nicolas Thill <nico@openwrt.org> | 2006-06-18 18:30:40 +0000 |
---|---|---|
committer | Nicolas Thill <nico@openwrt.org> | 2006-06-18 18:30:40 +0000 |
commit | c12c40f4a65efb0a0c070fe914c6552dbf2f22d1 (patch) | |
tree | 2a3133f582fa7391fe86e7dfa463db4f5631ef2e /package/pptp/Makefile | |
parent | 5448e327a35ac447794ff3d61900e8e9d16304ba (diff) | |
download | master-187ad058-c12c40f4a65efb0a0c070fe914c6552dbf2f22d1.tar.gz master-187ad058-c12c40f4a65efb0a0c070fe914c6552dbf2f22d1.tar.bz2 master-187ad058-c12c40f4a65efb0a0c070fe914c6552dbf2f22d1.zip |
normalize Makefiles.
git-svn-id: svn://svn.openwrt.org/openwrt/branches/buildroot-ng/openwrt@3998 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package/pptp/Makefile')
-rw-r--r-- | package/pptp/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/package/pptp/Makefile b/package/pptp/Makefile index 776a668640..08cb43a7c2 100644 --- a/package/pptp/Makefile +++ b/package/pptp/Makefile @@ -23,11 +23,11 @@ URL:=http://pptpclient.sourceforge.net/ endef define Package/pptp/install - install -d -m0755 $(1)/sbin install -d -m0755 $(1)/etc/ppp - install -d -m0755 $(1)/usr/sbin - install -m0755 ./files/ifup.pptp $(1)/sbin/ifup.pptp install -m0644 ./files/options.pptp $(1)/etc/ppp/ + install -d -m0755 $(1)/sbin + install -m0755 ./files/ifup.pptp $(1)/sbin/ + install -d -m0755 $(1)/usr/sbin install -m0755 $(PKG_BUILD_DIR)/pptp $(1)/usr/sbin/ endef |