projects
/
kopensolaris-gnu
/
glibc.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
|
inline
| side by side (parent:
15bc9b8
)
($nfp check): Iterate through $mach and use all fpu/ dirs that exist.
author
roland
<roland>
Sun, 7 Aug 1994 05:12:52 +0000
(
05:12
+0000)
committer
roland
<roland>
Sun, 7 Aug 1994 05:12:52 +0000
(
05:12
+0000)
configure.in
patch
|
blob
|
history
diff --git
a/configure.in
b/configure.in
index
7df0b14
..
292c862
100644
(file)
--- a/
configure.in
+++ b/
configure.in
@@
-294,8
+294,14
@@
echo on `(hostname || uname -n) 2>/dev/null | sed 1q` for ${config}.
sysnames="`echo $sysnames | sed -e 's@^/@@' -e 's@ /@ @g'`"
# Prepend the machine's FPU directory unless --nfp.
sysnames="`echo $sysnames | sed -e 's@^/@@' -e 's@ /@ @g'`"
# Prepend the machine's FPU directory unless --nfp.
-if [ ! "$nfp" -a -d $sysdep_dir/$machine/fpu ]; then
- sysnames="${machine}/fpu $sysnames"
+if [ ! "$nfp" ]; then
+ fpu_dirs=
+ for m in $mach; do
+ if [ -d $sysdep_dir$mach/fpu ]; then
+ fpu_dirs="$fpu_dirs $mach/fpu"
+ fi
+ done
+ sysnames="`echo $fpu_dirs | sed -e 's,^/,,' -e 's, /,,g'` $sysnames"
fi
# Expand the list of system names into a full list of directories
fi
# Expand the list of system names into a full list of directories