summaryrefslogtreecommitdiff
path: root/scripts/mkconfigs
blob: 6a2e6a29ab29f6c9167a0c37607407118c66bbeb (plain)
1
2
3
4
5
6
7
8
9
#!/usr/bin/perl

system('rm -f configs/linux-*');
for $p ( split /\s+/, `\$QTDIR/util/scripts/mkconfigs -p qws` ) {
    system("cp \$QTDIR/$p configs");
    if ( $ARGV[0] eq '-v' ) {
	print "$p\n";
    }
}