mirror of
git://projects.qi-hardware.com/openwrt-xburst.git
synced 2024-11-27 17:15:00 +02:00
fix .pkginfo line to allow the use of $(SOURCE)
git-svn-id: svn://svn.openwrt.org/openwrt/branches/buildroot-ng/openwrt@3802 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
parent
93e50b06ca
commit
9f306c85c2
8
Makefile
8
Makefile
@ -41,11 +41,11 @@ export OPENWRTVERSION
|
|||||||
all:
|
all:
|
||||||
|
|
||||||
.pkginfo: FORCE
|
.pkginfo: FORCE
|
||||||
ifeq ($(shell ./scripts/timestamp.pl -p .pkginfo package),package)
|
ifneq ($(shell ./scripts/timestamp.pl -p .pkginfo package Makefile),.pkginfo)
|
||||||
@echo Collecting package info...
|
@echo Collecting package info...
|
||||||
@-for makefile in package/*/Makefile; do \
|
@-for dir in package/*/; do \
|
||||||
echo Source-Makefile: $$makefile; \
|
echo Source-Makefile: $${dir}Makefile; \
|
||||||
$(MAKE) --no-print-dir DUMP=1 -f $$makefile 2>&- || true; \
|
$(MAKE) --no-print-dir DUMP=1 -C $$dir 2>&- || true; \
|
||||||
done > $@
|
done > $@
|
||||||
endif
|
endif
|
||||||
|
|
||||||
|
@ -23,10 +23,11 @@ TITLE:=Core utilities for embedded Linux
|
|||||||
DESCRIPTION:=The Swiss Army Knife of embedded Linux. \\\
|
DESCRIPTION:=The Swiss Army Knife of embedded Linux. \\\
|
||||||
It slices, it dices, it makes Julian Fries.
|
It slices, it dices, it makes Julian Fries.
|
||||||
URL:=http://busybox.net/
|
URL:=http://busybox.net/
|
||||||
CONFIG:=menu "Configuration" \\\
|
CONFIG:=\\\
|
||||||
depends on PACKAGE_busybox \\\
|
menu "Configuration" \\\
|
||||||
source "package/busybox/config/Config.in" \\\
|
depends on PACKAGE_busybox \\\
|
||||||
endmenu
|
source "$(SOURCE)/config/Config.in" \\\
|
||||||
|
endmenu
|
||||||
endef
|
endef
|
||||||
|
|
||||||
define Build/Configure
|
define Build/Configure
|
||||||
|
Loading…
Reference in New Issue
Block a user