1
0
mirror of git://projects.qi-hardware.com/openwrt-xburst.git synced 2024-09-18 03:12:05 +03:00
openwrt-xburst/scripts/configtest.pl

13 lines
266 B
Perl
Raw Normal View History

#!/usr/bin/perl
my %change = (
'BUSYBOX' => 'make -C package busybox-clean',
'' => 'make target_clean'
);
foreach my $change (keys %change) {
my $v1 = `grep '$change' .config.test`;
my $v2 = `grep '$change' .config`;
$v1 eq $v2 or system($change{$change});
}