diff options
author | Jo-Philipp Wich <jo@mein.io> | 2018-02-02 14:39:23 +0100 |
---|---|---|
committer | Jo-Philipp Wich <jo@mein.io> | 2018-02-02 14:41:35 +0100 |
commit | fd30187c873868aa7bfea0d3402022164e09af49 (patch) | |
tree | 3bcbbaa9d6e5744fcb692f0abdeda865b22882a6 /target | |
parent | 1cb06d8907a5a155947f51e9e5b75b6019230fb2 (diff) | |
download | upstream-fd30187c873868aa7bfea0d3402022164e09af49.tar.gz upstream-fd30187c873868aa7bfea0d3402022164e09af49.tar.bz2 upstream-fd30187c873868aa7bfea0d3402022164e09af49.zip |
imagebuilder: fix reference to removed VERSION_SED variable
Fixes: ff8e9a4ecb ("treewide: combine VERSION_SED and VERSION_SED_SCRIPT")
Signed-off-by: Jo-Philipp Wich <jo@mein.io>
Diffstat (limited to 'target')
-rw-r--r-- | target/imagebuilder/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/target/imagebuilder/Makefile b/target/imagebuilder/Makefile index 6ce57f3185..418cf59c00 100644 --- a/target/imagebuilder/Makefile +++ b/target/imagebuilder/Makefile @@ -44,7 +44,7 @@ endif echo '## This is the local package repository, do not remove!' >> $(PKG_BUILD_DIR)/repositories.conf echo 'src imagebuilder file:packages' >> $(PKG_BUILD_DIR)/repositories.conf - $(VERSION_SED) $(PKG_BUILD_DIR)/repositories.conf + $(VERSION_SED_SCRIPT) $(PKG_BUILD_DIR)/repositories.conf ifeq ($(CONFIG_IB_STANDALONE),) (cd $(call FeedPackageDir,libc); $(FIND) -type f -name 'libc_*.ipk' -or -name 'kernel_*.ipk' -or -name 'kmod-*.ipk') | \ |