diff options
author | mbm <mbm@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2006-05-19 23:02:14 +0000 |
---|---|---|
committer | mbm <mbm@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2006-05-19 23:02:14 +0000 |
commit | 9f306c85c239368b0077535fcd0320f7f5ce1626 (patch) | |
tree | a0285c2ef011f3e8dce29372af61c786334d2567 /package | |
parent | 93e50b06ca295bc34326f6221b48ff5e94ccaa12 (diff) |
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
Diffstat (limited to 'package')
-rw-r--r-- | package/busybox/Makefile | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/package/busybox/Makefile b/package/busybox/Makefile index ff23ee7dd8..cc36301f52 100644 --- a/package/busybox/Makefile +++ b/package/busybox/Makefile @@ -23,10 +23,11 @@ TITLE:=Core utilities for embedded Linux DESCRIPTION:=The Swiss Army Knife of embedded Linux. \\\ It slices, it dices, it makes Julian Fries. URL:=http://busybox.net/ -CONFIG:=menu "Configuration" \\\ - depends on PACKAGE_busybox \\\ -source "package/busybox/config/Config.in" \\\ -endmenu +CONFIG:=\\\ + menu "Configuration" \\\ + depends on PACKAGE_busybox \\\ + source "$(SOURCE)/config/Config.in" \\\ + endmenu endef define Build/Configure |