We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1dd3b17 commit 4c3da67Copy full SHA for 4c3da67
[refs]
@@ -1,2 +1,2 @@
1
---
2
-refs/heads/master: 50c78313f216c96000c63a99c8ee787a8ae595ae
+refs/heads/master: 3e7ff65201c44f7f7bcca112bc8a7c6b245fd94d
trunk/configure
@@ -43,7 +43,13 @@ make_test_subdirs() {
43
putvar() {
44
local T
45
eval T=\$$1
46
- printf "%-20s := %s\n" $1 "$T"
+ eval TLEN=\${#$1}
47
+ if [ $TLEN -gt 35 ]
48
+ then
49
+ printf "configure: %-20s := %.35s ...\n" $1 "$T"
50
+ else
51
+ printf "configure: %-20s := %s\n" $1 "$T"
52
+ fi
53
printf "%-20s := %s\n" $1 "$T" >>config.mk
54
}
55
0 commit comments