Skip to content

Commit 4c3da67

Browse files
committed
---
yaml --- r: 1732 b: refs/heads/master c: 3e7ff65 h: refs/heads/master v: v3
1 parent 1dd3b17 commit 4c3da67

File tree

2 files changed

+8
-2
lines changed

2 files changed

+8
-2
lines changed

[refs]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
---
2-
refs/heads/master: 50c78313f216c96000c63a99c8ee787a8ae595ae
2+
refs/heads/master: 3e7ff65201c44f7f7bcca112bc8a7c6b245fd94d

trunk/configure

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,13 @@ make_test_subdirs() {
4343
putvar() {
4444
local T
4545
eval T=\$$1
46-
printf "%-20s := %s\n" $1 "$T"
46+
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
4753
printf "%-20s := %s\n" $1 "$T" >>config.mk
4854
}
4955

0 commit comments

Comments
 (0)