diff options
author | Felix Fietkau <nbd@openwrt.org> | 2007-01-14 10:49:00 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2007-01-14 10:49:00 +0000 |
commit | e28c2f8e9da9bcf708a1ad4608fbf31514a88e27 (patch) | |
tree | 530ae33d5387081d791ae4e075dddd562a0d58ec /target/imagebuilder/files/Makefile | |
parent | e102b4f4a02c5d96c973e4fee17eabe3df34e8ed (diff) | |
download | upstream-e28c2f8e9da9bcf708a1ad4608fbf31514a88e27.tar.gz upstream-e28c2f8e9da9bcf708a1ad4608fbf31514a88e27.tar.bz2 upstream-e28c2f8e9da9bcf708a1ad4608fbf31514a88e27.zip |
include .targetinfo in the image builder, and allow direct calls to the package_index target
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@6093 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'target/imagebuilder/files/Makefile')
-rw-r--r-- | target/imagebuilder/files/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/target/imagebuilder/files/Makefile b/target/imagebuilder/files/Makefile index 720bcfa768..d4bcdf5fa9 100644 --- a/target/imagebuilder/files/Makefile +++ b/target/imagebuilder/files/Makefile @@ -88,7 +88,7 @@ $(TOPDIR)/tmp/ipkg.conf: FORCE BUILD_PACKAGES:=$(sort $(DEFAULT_PACKAGES) $(PACKAGES) $($(PROFILE)_PACKAGES) kernel) BUILD_PACKAGES:=$(patsubst base-files,base-files-$(BOARD)-$(KERNEL),$(BUILD_PACKAGES)) -image: $(TOPDIR)/tmp/ipkg.conf +image: if [ -z "$($(PROFILE)_NAME)" ]; then \ echo Profile $(PROFILE) not found.; \ echo 'Use "make info" to get a list of available target profiles'; \ @@ -107,7 +107,7 @@ endif $(MAKE) package_postinst $(MAKE) build_image -package_index: FORCE +package_index: $(TOPDIR)/tmp/ipkg.conf FORCE @echo @echo Building package index... (cd $(PACKAGE_DIR); $(SCRIPT_DIR)/ipkg-make-index.sh . > Packages) >/dev/null 2>/dev/null |