projects
/
openwrt.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
kernel: replace jhash2 with the faster jhash3 algorithm
[openwrt.git]
/
target
/
imagebuilder
/
files
/
Makefile
diff --git
a/target/imagebuilder/files/Makefile
b/target/imagebuilder/files/Makefile
index
aa5b971
..
e8bd28f
100644
(file)
--- a/
target/imagebuilder/files/Makefile
+++ b/
target/imagebuilder/files/Makefile
@@
-1,6
+1,6
@@
# Makefile for OpenWrt
#
# Makefile for OpenWrt
#
-# Copyright (C) 2007 OpenWrt.org
+# Copyright (C) 2007
-2008
OpenWrt.org
#
# This is free software, licensed under the GNU General Public License v2.
# See /LICENSE for more information.
#
# This is free software, licensed under the GNU General Public License v2.
# See /LICENSE for more information.
@@
-79,7
+79,7
@@
info: FORCE
$(TOPDIR)/tmp/ipkg.conf: FORCE
@mkdir -p $(TOPDIR)/tmp
@echo 'dest root /' > $@
$(TOPDIR)/tmp/ipkg.conf: FORCE
@mkdir -p $(TOPDIR)/tmp
@echo 'dest root /' > $@
- @echo 'src packages file:$(
TOPDIR)/packages
' >> $@
+ @echo 'src packages file:$(
PACKAGE_DIR)
' >> $@
BUILD_PACKAGES:=$(sort $(DEFAULT_PACKAGES) $(PACKAGES) $($(PROFILE)_PACKAGES) kernel)
ifeq ($(KERNEL),2.4)
BUILD_PACKAGES:=$(sort $(DEFAULT_PACKAGES) $(PACKAGES) $($(PROFILE)_PACKAGES) kernel)
ifeq ($(KERNEL),2.4)
@@
-112,7
+112,9
@@
endif
package_index: $(TOPDIR)/tmp/ipkg.conf FORCE
@echo
@echo Building package index...
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
+ (cd $(PACKAGE_DIR); $(SCRIPT_DIR)/ipkg-make-index.sh . > Packages && \
+ gzip -9c Packages > Packages.gz \
+ ) >/dev/null 2>/dev/null
$(IPKG) update
package_install: FORCE
$(IPKG) update
package_install: FORCE
This page took
0.026302 seconds
and
4
git commands to generate.