Skip to content
This repository was archived by the owner on Jun 1, 2023. It is now read-only.

Commit ec10bef

Browse files
H.Merijn BrandReini Urban
authored andcommitted
[perl #128538] [PATCH] Fix copy/paste error in Configure
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.
1 parent 37778ec commit ec10bef

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Configure

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7254,7 +7254,7 @@ case "$usequadmath" in
72547254
$define)
72557255
echo "quadmath selected." >&4
72567256
case "$archname" in
7257-
*-ld*) echo "...and architecture name already has -quadmath." >&4
7257+
*-quadmath*) echo "...and architecture name already has -quadmath." >&4
72587258
;;
72597259
*) archname="$archname-quadmath"
72607260
echo "...setting architecture name to $archname." >&4

0 commit comments

Comments
 (0)