projects
/
openwrt.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
Add php4 package (Thanks aorlinsk and enzo for the help)
[openwrt.git]
/
openwrt
/
scripts
/
configtest.pl
diff --git
a/openwrt/scripts/configtest.pl
b/openwrt/scripts/configtest.pl
index
01323a5
..
3ca33d8
100755
(executable)
--- a/
openwrt/scripts/configtest.pl
+++ b/
openwrt/scripts/configtest.pl
@@
-1,12
+1,27
@@
#!/usr/bin/perl
#!/usr/bin/perl
-
my %change = (
'BUSYBOX' => 'make -C package busybox-clean',
my %change = (
'BUSYBOX' => 'make -C package busybox-clean',
+ 'OPENVPN_' => 'make -C package openvpn-clean',
'' => 'make target_clean'
);
'' => 'make target_clean'
);
+my @configfiles = (
+ ['package/linux/linux.config', 'build_mipsel/linux/.config' =>
+ 'make -C package linux-clean']
+);
+
+
+
foreach my $change (keys %change) {
my $v1 = `grep '$change' .config.test`;
my $v2 = `grep '$change' .config`;
$v1 eq $v2 or system($change{$change});
}
foreach my $change (keys %change) {
my $v1 = `grep '$change' .config.test`;
my $v2 = `grep '$change' .config`;
$v1 eq $v2 or system($change{$change});
}
+
+foreach my $file (@configfiles) {
+ if ((-f $file->[0]) and (-f $file->[1])) {
+ my @s1 = stat $file->[0];
+ my @s2 = stat $file->[1];
+ $s1[9] > $s2[9] and system($file->[2]);
+ }
+}
This page took
0.024172 seconds
and
4
git commands to generate.