summaryrefslogtreecommitdiffstats
path: root/scripts/gen_target_mk.pl
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/gen_target_mk.pl')
-rwxr-xr-xscripts/gen_target_mk.pl5
1 files changed, 3 insertions, 2 deletions
diff --git a/scripts/gen_target_mk.pl b/scripts/gen_target_mk.pl
index 0e4d50a74c..2492478f9b 100755
--- a/scripts/gen_target_mk.pl
+++ b/scripts/gen_target_mk.pl
@@ -70,7 +70,7 @@ foreach $target (@target) {
$profiles_eval .= "
\$(eval \$(call Profile,$conf\_$profile->{id}))"
}
- print <<EOF
+ print "
ifeq (\$(CONFIG_LINUX_$conf),y)
define Target
KERNEL:=$target->{kernel}
@@ -78,9 +78,10 @@ ifeq (\$(CONFIG_LINUX_$conf),y)
LINUX_VERSION:=$target->{version}
LINUX_RELEASE:=$target->{release}
LINUX_KARCH:=$target->{karch}
+ DEFAULT_PACKAGES:=".join(" ", @{$target->{packages}})."
endef$profiles_def
endif$profiles_eval
-EOF
+"
}
print "\$(eval \$(call Target))\n";