now that each target has its own package directory, remove the base-files package renaming hack

SVN-Revision: 17330
This commit is contained in:
Felix Fietkau 2009-08-20 15:31:22 +00:00
parent 2982f7ef79
commit 72cf6925a4

View File

@ -32,9 +32,7 @@ else
LIBGCC_VERSION:=<LIBGCC_VERSION> LIBGCC_VERSION:=<LIBGCC_VERSION>
endif endif
CONFIG_PACKAGE_base-files$(TARGET):=$(CONFIG_PACKAGE_base-files) define Package/base-files
define Package/base-files$(TARGET)
SECTION:=base SECTION:=base
CATEGORY:=Base system CATEGORY:=Base system
TITLE:=Base filesystem for OpenWrt TITLE:=Base filesystem for OpenWrt
@ -47,7 +45,7 @@ define Package/base-files$(TARGET)
$(call Config,network.lan.dns,ip,,LAN DNS server) $(call Config,network.lan.dns,ip,,LAN DNS server)
endef endef
define Package/base-files$(TARGET)/conffiles define Package/base-files/conffiles
/etc/banner /etc/banner
/etc/hosts /etc/hosts
/etc/inittab /etc/inittab
@ -59,7 +57,7 @@ define Package/base-files$(TARGET)/conffiles
$(call $(TARGET)/conffiles) $(call $(TARGET)/conffiles)
endef endef
define Package/base-files$(TARGET)/description define Package/base-files/description
This package contains a base filesystem and system scripts for OpenWrt. This package contains a base filesystem and system scripts for OpenWrt.
endef endef
@ -140,7 +138,7 @@ define Build/Compile
$(call Build/Compile/Default) $(call Build/Compile/Default)
endef endef
define Package/base-files$(TARGET)/install define Package/base-files/install
$(CP) ./files/* $(1)/ $(CP) ./files/* $(1)/
if [ -d $(GENERIC_PLATFORM_DIR)/base-files/. ]; then \ if [ -d $(GENERIC_PLATFORM_DIR)/base-files/. ]; then \
$(CP) $(GENERIC_PLATFORM_DIR)/base-files/* $(1)/; \ $(CP) $(GENERIC_PLATFORM_DIR)/base-files/* $(1)/; \
@ -277,7 +275,7 @@ ifneq ($(DUMP),1)
-include $(PLATFORM_DIR)/base-files.mk -include $(PLATFORM_DIR)/base-files.mk
endif endif
$(eval $(call BuildPackage,base-files$(TARGET))) $(eval $(call BuildPackage,base-files))
$(eval $(call BuildPackage,libc)) $(eval $(call BuildPackage,libc))
$(eval $(call BuildPackage,libgcc)) $(eval $(call BuildPackage,libgcc))
$(eval $(call BuildPackage,libssp)) $(eval $(call BuildPackage,libssp))