next round of build system cleanup - convert package/ to new structure

SVN-Revision: 8236
This commit is contained in:
Felix Fietkau
2007-07-30 18:22:01 +00:00
parent 2e072cfb4b
commit 49e628f765
11 changed files with 123 additions and 134 deletions

View File

@@ -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
}