X-Git-Url: https://git.enpas.org/?a=blobdiff_plain;f=package%2Fbusybox%2FMakefile;h=03a0ebd54927964f7f456407924765dce496b0b2;hb=6dbdf08f38e76694e0bea1e418ecd37f47c04e8c;hp=cf6ddac6ec83ec2d716a77431297a4bd4a456ff5;hpb=52c3bc6438c0b363577a7cb0192d64c5e387dca3;p=openwrt.git diff --git a/package/busybox/Makefile b/package/busybox/Makefile index cf6ddac6ec..03a0ebd549 100644 --- a/package/busybox/Makefile +++ b/package/busybox/Makefile @@ -16,13 +16,13 @@ PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.bz2 PKG_SOURCE_URL:=http://www.busybox.net/downloads \ http://distfiles.gentoo.org/distfiles/ PKG_MD5SUM:=5728403bce309cdabcffa414e2e64052 -PKG_CAT:=bzcat - -PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)-$(PKG_VERSION) -PKG_BUILD_DEPENDS:=gcgi include $(INCLUDE_DIR)/package.mk +ifeq ($(DUMP),) + STAMP_CONFIGURED:=$(strip $(STAMP_CONFIGURED))_$(shell grep '^CONFIG_BUSYBOX_' $(TOPDIR)/.config | md5s) +endif + init-y := init-$(CONFIG_BUSYBOX_CONFIG_HTTPD) += httpd init-$(CONFIG_BUSYBOX_CONFIG_CROND) += cron @@ -50,7 +50,8 @@ define Package/busybox/config endef define Build/Configure - $(SCRIPT_DIR)/gen_busybox_config.pl $(TOPDIR)/.config > $(PKG_BUILD_DIR)/.config + rm -f $(PKG_BUILD_DIR)/.configured* + grep 'CONFIG_BUSYBOX_' $(TOPDIR)/.config | sed -e "s,\\(# \)\\?CONFIG_BUSYBOX_\\(.*\\),\\1\\2,g" > $(PKG_BUILD_DIR)/.config yes '' | $(MAKE) -C $(PKG_BUILD_DIR) \ CC="$(TARGET_CC)" \ CROSS_COMPILE="$(TARGET_CROSS)" \