diff options
author | Felix Fietkau <nbd@openwrt.org> | 2012-05-06 21:19:04 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2012-05-06 21:19:04 +0000 |
commit | c7667e1b888e04d3696dc01d7874ef484ba502f7 (patch) | |
tree | f432ef161ffc42495a855d28912a3597e34825ab /package | |
parent | 7432f7b3e8b53552d451613128e67662cce42df2 (diff) | |
download | upstream-c7667e1b888e04d3696dc01d7874ef484ba502f7.tar.gz upstream-c7667e1b888e04d3696dc01d7874ef484ba502f7.tar.bz2 upstream-c7667e1b888e04d3696dc01d7874ef484ba502f7.zip |
pptp: fix installation path for netifd proto handler
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@31636 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package')
-rw-r--r-- | package/pptp/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/package/pptp/Makefile b/package/pptp/Makefile index e44806bdd2..51bac8a589 100644 --- a/package/pptp/Makefile +++ b/package/pptp/Makefile @@ -42,8 +42,8 @@ ifneq ($(CONFIG_PACKAGE_netifd),) $(INSTALL_BIN) $(PKG_BUILD_DIR)/pptp $(1)/usr/sbin/ $(INSTALL_DIR) $(1)/etc/ppp $(INSTALL_DATA) ./files/options.pptp $(1)/etc/ppp/ - $(INSTALL_DIR) $(1)/lib/network - $(INSTALL_BIN) ./files/pptp.sh $(1)/lib/network/ + $(INSTALL_DIR) $(1)/lib/netifd/proto/ + $(INSTALL_BIN) ./files/pptp.sh $(1)/lib/netifd/proto/ endef else define Package/pptp/install |