diff options
author | nbd <nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2006-05-11 16:00:43 +0000 |
---|---|---|
committer | nbd <nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2006-05-11 16:00:43 +0000 |
commit | 44ba04efe200178dd52943b2c1edd8418fbac0ba (patch) | |
tree | 77d5a5642e464a762bd56646a801836158df05ef /package/robocfg/Makefile | |
parent | 64c71ec5d997737fe1db51d1a1d50b669faec07b (diff) |
replace $(IDIR_*) with $(1)
git-svn-id: svn://svn.openwrt.org/openwrt/branches/buildroot-ng/openwrt@3759 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package/robocfg/Makefile')
-rw-r--r-- | package/robocfg/Makefile | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/package/robocfg/Makefile b/package/robocfg/Makefile index 194c022a41..8f89e75387 100644 --- a/package/robocfg/Makefile +++ b/package/robocfg/Makefile @@ -23,10 +23,10 @@ define Build/Compile endef define Package/robocfg/install - install -d -m0755 $(IDIR_ROBOCFG)/sbin - install -m0755 $(PKG_BUILD_DIR)/robocfg $(IDIR_ROBOCFG)/sbin/ - $(RSTRIP) $(IDIR_ROBOCFG) - $(IPKG_BUILD) $(IDIR_ROBOCFG) $(PACKAGE_DIR) + install -d -m0755 $(1)/sbin + install -m0755 $(PKG_BUILD_DIR)/robocfg $(1)/sbin/ + $(RSTRIP) $(1) + $(IPKG_BUILD) $(1) $(PACKAGE_DIR) endef $(eval $(call BuildPackage,robocfg)) |