summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorOswald Buddenhagen <oswald.buddenhagen@nokia.com>2009-06-12 16:21:00 (GMT)
committerJason McDonald <jason.mcdonald@nokia.com>2009-06-15 09:39:37 (GMT)
commitce20a20f33a02f8e716ffe5a675115d7677da462 (patch)
tree53cf70c800f50b613cb94c8ad70e918c5c7fed77
parentc408b60e13f0928c6a3d99a9d2ef9d9b91ef8dfd (diff)
downloadQt-ce20a20f33a02f8e716ffe5a675115d7677da462.zip
Qt-ce20a20f33a02f8e716ffe5a675115d7677da462.tar.gz
Qt-ce20a20f33a02f8e716ffe5a675115d7677da462.tar.bz2
properly indent embedded awk code
Reviewed-by: TrustMe (cherry picked from commit b3743d1df735d4b46f45e034818bbfe45bf8d22e)
-rwxr-xr-xconfigure22
1 files changed, 11 insertions, 11 deletions
diff --git a/configure b/configure
index 4cf7499..ece117b 100755
--- a/configure
+++ b/configure
@@ -7035,9 +7035,9 @@ BEGIN {
FNR == 1 {
if ( input_file ) {
- if ( ! target_file )
- target_file = third
- print input_file >target_file
+ if ( ! target_file )
+ target_file = third
+ print input_file >target_file
}
matched_target = 0
@@ -7048,32 +7048,32 @@ FNR == 1 {
/^(TARGET.*=)/ {
if ( \$3 == "moc" || \$3 ~ /^Qt/ ) {
- target_file = first
+ target_file = first
matched_target = 1
}
}
matched_target == 0 && /^(TEMPLATE.*=)/ {
if ( \$3 == "subdirs" )
- target_file = second
+ target_file = second
else if ( \$3 == "lib" )
- template_lib = 1
+ template_lib = 1
else
- target_file = third
+ target_file = third
}
matched_target == 0 && template_lib == 1 && /^(CONFIG.*=)/ {
if ( \$0 ~ /plugin/ )
target_file = third
else
- target_file = second
+ target_file = second
}
END {
if ( input_file ) {
- if ( ! target_file )
- target_file = third
- print input_file >>target_file
+ if ( ! target_file )
+ target_file = third
+ print input_file >>target_file
}
}