summaryrefslogtreecommitdiff
path: root/Configure
diff options
context:
space:
mode:
authorNicholas Clark <nick@ccl4.org>2012-01-31 13:29:04 +0000
committerNicholas Clark <nick@ccl4.org>2012-01-31 13:29:04 +0000
commit01db32e2e6d17e9e5f32d58619ec27db1c2ec714 (patch)
treee8e4a80fc2f11658af0cc6b302ebcfc09e7c6801 /Configure
parent00e518b314a020ec83027f9ff1c3709f23a9fe99 (diff)
downloadperl-01db32e2e6d17e9e5f32d58619ec27db1c2ec714.tar.gz
Add blank lines around Configure's duplicate extension diagnostic.
The diagnostic message containing the duplicate extension did not stand out, particularly given that the immediately previous output is a very long line of found extensions. So add blank lines on either to make it easier to spot.
Diffstat (limited to 'Configure')
-rwxr-xr-xConfigure4
1 files changed, 3 insertions, 1 deletions
diff --git a/Configure b/Configure
index 347bfee94f..43f56bfdc4 100755
--- a/Configure
+++ b/Configure
@@ -22182,6 +22182,7 @@ find_extensions='
else
echo " $known_extensions $nonxs_extensions" > $$.tmp;
if $contains " $this_ext " $$.tmp; then
+ echo >&4;
echo "Duplicate directories detected for extension $xxx" >&4;
echo "Configure cannot correctly recover from this - shall I abort?" >&4;
case "$knowitall" in
@@ -22191,7 +22192,8 @@ find_extensions='
. ../UU/myread;
case "$ans" in
n*|N*) ;;
- *) echo "Ok. Stopping Configure." >&4;
+ *) echo >&4;
+ echo "Ok. Stopping Configure." >&4;
echo "Please remove the duplicate directory (eg using git clean) and then re-run Configure" >&4;
exit 1;;
esac;