summaryrefslogtreecommitdiff
path: root/mpi/config.links
diff options
context:
space:
mode:
authorWerner Koch <wk@gnupg.org>2007-05-04 11:01:17 +0000
committerWerner Koch <wk@gnupg.org>2007-05-04 11:01:17 +0000
commit602a5881840628b91183e44102603f9581d7aca1 (patch)
tree50c2fa96be781b3704ab1317879bde0def96d750 /mpi/config.links
parent639c29542e9629db52c6687f38629d76964fafb4 (diff)
downloadlibgcrypt-602a5881840628b91183e44102603f9581d7aca1.tar.gz
Post release updates.
Allow colons as delimiters for --enable-mpi-path.
Diffstat (limited to 'mpi/config.links')
-rw-r--r--mpi/config.links4
1 files changed, 2 insertions, 2 deletions
diff --git a/mpi/config.links b/mpi/config.links
index 65ed8609..aaae6bca 100644
--- a/mpi/config.links
+++ b/mpi/config.links
@@ -322,7 +322,7 @@ fi
# if this fails get it from the generic subdirectory.
mpi_ln_list=
mpi_mod_list=
-path="$mpi_extra_path $path generic"
+path=`echo "$mpi_extra_path $path generic" | tr ':' ' '`
echo '/* Created by config.links - do not edit */' >./mpi/mod-source-info.h
echo "/* Target: ${target} */" >>./mpi/mod-source-info.h
echo "static char mod_source_info[] =" >>./mpi/mod-source-info.h
@@ -350,7 +350,7 @@ done
echo " ;" >>./mpi/mod-source-info.h
# Same thing for the file which defines the limb size
-path="$path generic"
+path=`echo "$path generic" | tr ':' ' '`
for dir in $path ; do
rm -f $srcdir/mpi/mpi-asm-defs.h
if test -f $srcdir/mpi/$dir/mpi-asm-defs.h ; then