projects
/
15.05
/
openwrt.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
374b4f9
)
build package index in sdk (fixes #51)
author
Felix Fietkau
<nbd@openwrt.org>
Mon, 12 Dec 2005 00:08:08 +0000
(
00:08
+0000)
committer
Felix Fietkau
<nbd@openwrt.org>
Mon, 12 Dec 2005 00:08:08 +0000
(
00:08
+0000)
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@2629
3c298f89
-4303-0410-b956-
a3cf2f4a3e73
openwrt/package/sdk/files/Makefile.sdk
patch
|
blob
|
history
diff --git
a/openwrt/package/sdk/files/Makefile.sdk
b/openwrt/package/sdk/files/Makefile.sdk
index
b4a3010
..
6d5f61a
100644
(file)
--- a/
openwrt/package/sdk/files/Makefile.sdk
+++ b/
openwrt/package/sdk/files/Makefile.sdk
@@
-12,7
+12,7
@@
PACKAGES_PREPARE:=$(foreach package,$(PACKAGES),$(package)-prepare)
PACKAGES_COMPILE:=$(foreach package,$(PACKAGES),$(package)-compile)
PACKAGES_CLEAN:=$(foreach package,$(PACKAGES),$(package)-clean)
-all: compile
+all: compile
package_index
compile: $(PACKAGES_COMPILE)
clean: $(PACKAGES_CLEAN)
rm -rf $(BUILD_DIR)
@@
-34,3
+34,9
@@
distclean: clean
$(BUILD_DIR):
mkdir -p $@
mkdir -p $(DL_DIR)
+
+package_index:
+ (cd $(PACKAGE_DIR); \
+ $(STAGING_DIR)/usr/bin/ipkg-make-index . > Packages \
+ )
+