mirror of
https://git.openwrt.org/openwrt/openwrt.git
synced 2024-11-18 22:43:53 +01:00
busybox: fix spurious rebuild issue
SVN-Revision: 14975
This commit is contained in:
parent
25c4c8a874
commit
fce316bc0b
@ -68,9 +68,7 @@ define Build/Compile
|
|||||||
EXTRA_CFLAGS="$(TARGET_CFLAGS)" \
|
EXTRA_CFLAGS="$(TARGET_CFLAGS)" \
|
||||||
ARCH="$(ARCH)" \
|
ARCH="$(ARCH)" \
|
||||||
all
|
all
|
||||||
endef
|
rm -rf $(PKG_INSTALL_DIR)
|
||||||
|
|
||||||
define Package/busybox/install
|
|
||||||
$(FIND) $(PKG_BUILD_DIR) -lname "*busybox" -exec rm \{\} \;
|
$(FIND) $(PKG_BUILD_DIR) -lname "*busybox" -exec rm \{\} \;
|
||||||
$(MAKE) -C $(PKG_BUILD_DIR) \
|
$(MAKE) -C $(PKG_BUILD_DIR) \
|
||||||
CC="$(TARGET_CC)" \
|
CC="$(TARGET_CC)" \
|
||||||
@ -78,9 +76,13 @@ define Package/busybox/install
|
|||||||
EXTRA_CFLAGS="$(TARGET_CFLAGS)" \
|
EXTRA_CFLAGS="$(TARGET_CFLAGS)" \
|
||||||
ARCH="$(ARCH)" \
|
ARCH="$(ARCH)" \
|
||||||
IPKG_ARCH="$(ARCH)" \
|
IPKG_ARCH="$(ARCH)" \
|
||||||
CONFIG_PREFIX="$(1)" \
|
CONFIG_PREFIX="$(PKG_INSTALL_DIR)" \
|
||||||
install
|
install
|
||||||
|
endef
|
||||||
|
|
||||||
|
define Package/busybox/install
|
||||||
$(INSTALL_DIR) $(1)/etc/init.d
|
$(INSTALL_DIR) $(1)/etc/init.d
|
||||||
|
$(CP) $(PKG_INSTALL_DIR)/* $(1)/
|
||||||
for tmp in $(init-y); do \
|
for tmp in $(init-y); do \
|
||||||
$(INSTALL_BIN) ./files/$$$$tmp $(1)/etc/init.d/$$$$tmp; \
|
$(INSTALL_BIN) ./files/$$$$tmp $(1)/etc/init.d/$$$$tmp; \
|
||||||
done
|
done
|
||||||
|
Loading…
Reference in New Issue
Block a user