[perl #128538] [PATCH] Fix copy/paste error in Configure
authorH.Merijn Brand <[email protected]>
Tue, 5 Jul 2016 16:49:29 +0000 (18:49 +0200)
committerH.Merijn Brand <[email protected]>
Tue, 5 Jul 2016 16:49:29 +0000 (18:49 +0200)
Self-explanatory. The code in question adds -quadmath to archname, but only if it isn't already there. However, since this was copied from a few lines earlier, it checks for -ld instead of -quadmath.

Configure

index 89585f1..2a885ee 100755 (executable)
--- a/Configure
+++ b/Configure
@@ -7187,7 +7187,7 @@ case "$usequadmath" in
 $define)
        echo "quadmath selected." >&4
        case "$archname" in
-       *-ld*) echo "...and architecture name already has -quadmath." >&4
+       *-quadmath*) echo "...and architecture name already has -quadmath." >&4
                ;;
        *)      archname="$archname-quadmath"
                echo "...setting architecture name to $archname." >&4