author | kergoth <kergoth> | 2002-01-25 22:14:26 (UTC) |
---|---|---|
committer | kergoth <kergoth> | 2002-01-25 22:14:26 (UTC) |
commit | 15318cad33835e4e2dc620d033e43cd930676cdd (patch) (unidiff) | |
tree | c2fa0399a2c47fda8e2cd0092c73a809d17f68eb /scripts/mkconfigs | |
download | opie-15318cad33835e4e2dc620d033e43cd930676cdd.zip opie-15318cad33835e4e2dc620d033e43cd930676cdd.tar.gz opie-15318cad33835e4e2dc620d033e43cd930676cdd.tar.bz2 |
Initial revision
-rwxr-xr-x | scripts/mkconfigs | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/scripts/mkconfigs b/scripts/mkconfigs new file mode 100755 index 0000000..6a2e6a2 --- a/dev/null +++ b/scripts/mkconfigs | |||
@@ -0,0 +1,9 @@ | |||
1 | #!/usr/bin/perl | ||
2 | |||
3 | system('rm -f configs/linux-*'); | ||
4 | for $p ( split /\s+/, `\$QTDIR/util/scripts/mkconfigs -p qws` ) { | ||
5 | system("cp \$QTDIR/$p configs"); | ||
6 | if ( $ARGV[0] eq '-v' ) { | ||
7 | print "$p\n"; | ||
8 | } | ||
9 | } | ||