diff options
author | Felix Fietkau <nbd@openwrt.org> | 2007-07-30 18:22:01 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2007-07-30 18:22:01 +0000 |
commit | 49e628f7652e9f7ce63b932f83b22756a65ff3b9 (patch) | |
tree | da6a7f4c8cc7c3e49b2af71d736762b4bb431fba /scripts | |
parent | 2e072cfb4b9d1818d1bdc98dba70d0d4ff1b56c3 (diff) | |
download | upstream-49e628f7652e9f7ce63b932f83b22756a65ff3b9.tar.gz upstream-49e628f7652e9f7ce63b932f83b22756a65ff3b9.tar.bz2 upstream-49e628f7652e9f7ce63b932f83b22756a65ff3b9.zip |
next round of build system cleanup - convert package/ to new structure
SVN-Revision: 8236
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/metadata.pl | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/scripts/metadata.pl b/scripts/metadata.pl index 6ed128aae2..16a120a7ae 100755 --- a/scripts/metadata.pl +++ b/scripts/metadata.pl @@ -576,12 +576,12 @@ sub gen_package_mk() { undef $idx if $idx =~ /^(kernel)|(base-files)$/; if ($idx) { next if $dep{$pkg->{src}."->".$idx}; - $depline .= " $idx\-compile"; + $depline .= " \$(curdir)/$idx/compile"; $dep{$pkg->{src}."->".$idx} = 1; } } if ($depline) { - $line .= $pkg->{subdir}."$pkg->{src}-compile: $depline\n"; + $line .= "\$(curdir)/".$pkg->{subdir}."$pkg->{src}/compile := $depline\n"; } } @@ -604,7 +604,7 @@ $cmds \\ ) > \$@ ifneq (\$(UCI_PRECONFIG)\$(CONFIG_UCI_PRECONFIG),) - preconfig: \$(TARGET_DIR)/etc/uci-defaults/$preconfig + package/preconfig: \$(TARGET_DIR)/etc/uci-defaults/$preconfig endif EOF } |