summaryrefslogtreecommitdiffstats
path: root/package/customize/customize.mk
diff options
context:
space:
mode:
authorThomas Petazzoni <thomas.petazzoni@free-electrons.com>2013-02-07 11:58:45 +0000
committerPeter Korsgaard <jacmet@sunsite.dk>2013-02-08 22:06:41 +0100
commit12ccc43fb7afe0f2dee850e33f8261f652ff4dd4 (patch)
tree20463ff74eb1f0a76510a36935df3312d10841a7 /package/customize/customize.mk
parent04dea0c48b57177fab80bfff46d74162011b199d (diff)
downloadbuildroot-novena-12ccc43fb7afe0f2dee850e33f8261f652ff4dd4.tar.gz
buildroot-novena-12ccc43fb7afe0f2dee850e33f8261f652ff4dd4.zip
package/customize: remove
This mechanism of root filesystem customization has been deprecated since a long time, so let's remove it now. Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Acked-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be> Acked-by: "Yann E. MORIN" <yann.morin.1998@free.fr> Acked-by: Luca Ceresoli <luca@lucaceresoli.net> Acked-by: "Samuel Martin" <s.martin49@gmail.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
Diffstat (limited to 'package/customize/customize.mk')
-rw-r--r--package/customize/customize.mk32
1 files changed, 0 insertions, 32 deletions
diff --git a/package/customize/customize.mk b/package/customize/customize.mk
deleted file mode 100644
index d2b851872..000000000
--- a/package/customize/customize.mk
+++ /dev/null
@@ -1,32 +0,0 @@
-#############################################################
-#
-# Any custom stuff you feel like doing....
-#
-#############################################################
-CUST_DIR:=package/customize/source
-
-$(BUILD_DIR)/.customize:
- rm -f $(BUILD_DIR)/series
- (cd $(CUST_DIR); \
- /bin/ls -d * > $(BUILD_DIR)/series || \
- touch $(BUILD_DIR)/series )
- for f in `cat $(BUILD_DIR)/series`; do \
- cp -af $(CUST_DIR)/$$f $(TARGET_DIR); \
- done
- rm -f $(BUILD_DIR)/series
- touch $@
-
-customize: $(BUILD_DIR)/.customize
-
-customize-clean:
- rm -f $(BUILD_DIR)/.customize
-
-.PHONY: customize
-#############################################################
-#
-# Toplevel Makefile options
-#
-#############################################################
-ifeq ($(BR2_PACKAGE_CUSTOMIZE),y)
-TARGETS+=customize
-endif