Commit f54b9565 authored by Bruce Momjian's avatar Bruce Momjian

Remove quotes around $CONFIG_LINKS. Caused improper expansion.

parent 01639833
...@@ -19222,7 +19222,7 @@ echo "$as_me: executing $ac_dest commands" >&6;} ...@@ -19222,7 +19222,7 @@ echo "$as_me: executing $ac_dest commands" >&6;}
check_win32_symlinks ) check_win32_symlinks )
# Links sometimes fail undetected on Mingw - # Links sometimes fail undetected on Mingw -
# so here we detect it and warn the user # so here we detect it and warn the user
for FILE in "$CONFIG_LINKS" for FILE in $CONFIG_LINKS
do do
# test -e works for symlinks in the MinGW console # test -e works for symlinks in the MinGW console
test -e `expr "$FILE" : '\(^:*\)'` || { echo "$as_me:$LINENO: WARNING: *** link for $FILE - please fix by hand" >&5 test -e `expr "$FILE" : '\(^:*\)'` || { echo "$as_me:$LINENO: WARNING: *** link for $FILE - please fix by hand" >&5
......
dnl Process this file with autoconf to produce a configure script. dnl Process this file with autoconf to produce a configure script.
dnl $PostgreSQL: pgsql/configure.in,v 1.359 2004/05/27 13:08:48 momjian Exp $ dnl $PostgreSQL: pgsql/configure.in,v 1.360 2004/05/28 20:52:42 momjian Exp $
dnl dnl
dnl Developers, please strive to achieve this order: dnl Developers, please strive to achieve this order:
dnl dnl
...@@ -1237,7 +1237,7 @@ case $host_os in mingw*) ...@@ -1237,7 +1237,7 @@ case $host_os in mingw*)
AC_CONFIG_COMMANDS([check_win32_symlinks],[ AC_CONFIG_COMMANDS([check_win32_symlinks],[
# Links sometimes fail undetected on Mingw - # Links sometimes fail undetected on Mingw -
# so here we detect it and warn the user # so here we detect it and warn the user
for FILE in "$CONFIG_LINKS" for FILE in $CONFIG_LINKS
do do
# test -e works for symlinks in the MinGW console # test -e works for symlinks in the MinGW console
test -e `expr "$FILE" : '\(^:*\)'` || AC_MSG_WARN([*** link for $FILE - please fix by hand]) test -e `expr "$FILE" : '\(^:*\)'` || AC_MSG_WARN([*** link for $FILE - please fix by hand])
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment