From: Daniel Golle Date: Wed, 27 Mar 2019 21:52:05 +0000 (+0100) Subject: IB: fix generating .profile.mk for profiles without metadata X-Git-Url: http://git.openwrt.org/?a=commitdiff_plain;h=7204736076b277977388ad43cd69f221a377ed7e;p=openwrt%2Fstaging%2Flynxis.git IB: fix generating .profile.mk for profiles without metadata Fixes d6fa04a437 ("IB: include SUPPORTED_DEVICES in 'make info' output") Signed-off-by: Daniel Golle --- diff --git a/scripts/target-metadata.pl b/scripts/target-metadata.pl index 4e4bc73d91..bd73ee910c 100755 --- a/scripts/target-metadata.pl +++ b/scripts/target-metadata.pl @@ -423,7 +423,7 @@ sub gen_profile_mk() { foreach my $profile (@{$cur->{profiles}}) { print $profile->{id}.'_NAME:='.$profile->{name}."\n"; print $profile->{id}.'_HAS_IMAGE_METADATA:='.$profile->{has_image_metadata}."\n"; - if (@{$profile->{supported_devices}} > 0) { + if (defined($profile->{supported_devices}) and @{$profile->{supported_devices}} > 0) { print $profile->{id}.'_SUPPORTED_DEVICES:='.join(' ', @{$profile->{supported_devices}})."\n"; } print $profile->{id}.'_PACKAGES:='.join(' ', @{$profile->{packages}})."\n";