diff options
author | agb <agb@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2009-07-02 07:24:44 +0000 |
---|---|---|
committer | agb <agb@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2009-07-02 07:24:44 +0000 |
commit | 32976620d3b730b5ebd233e7a01b06419dd9745b (patch) | |
tree | 7e7565bc247c85264fb2299aa9f8af6598109d00 | |
parent | c4ad0e8f1812ac7bff3c7035fa3b1c06c5c74e4f (diff) |
[package] base-files: explicitly create /etc/rc.d/, fixes ImageBuilder when using git instead of svn
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@16652 3c298f89-4303-0410-b956-a3cf2f4a3e73
-rw-r--r-- | package/base-files/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/package/base-files/Makefile b/package/base-files/Makefile index 69f1e776c2..4d6a15cc95 100644 --- a/package/base-files/Makefile +++ b/package/base-files/Makefile @@ -9,7 +9,7 @@ include $(TOPDIR)/rules.mk include $(INCLUDE_DIR)/kernel.mk PKG_NAME:=base-files -PKG_RELEASE:=23 +PKG_RELEASE:=24 PKG_FILE_DEPENDS:=$(PLATFORM_DIR)/ $(GENERIC_PLATFORM_DIR)/base-files/ @@ -175,6 +175,7 @@ define Package/base-files$(TARGET)/install mkdir -p $(1)/CONTROL mkdir -p $(1)/dev mkdir -p $(1)/etc/crontabs + mkdir -p $(1)/etc/rc.d mkdir -p $(1)/jffs mkdir -p $(1)/lib/firmware $(if $(LIB_SUFFIX),ln -s lib $(1)/lib$(LIB_SUFFIX)) |