diff options
| author | Bruce Momjian <bruce@momjian.us> | 2004-05-28 20:52:42 +0000 |
|---|---|---|
| committer | Bruce Momjian <bruce@momjian.us> | 2004-05-28 20:52:42 +0000 |
| commit | f54b95655e1b920820e10377fc955b957439198a (patch) | |
| tree | 93167a49d372ff5a02b18ea7757522ff16dd9485 /configure.in | |
| parent | 01639833305bedda4990e1a3557b1656ff8f238c (diff) | |
| download | postgresql-f54b95655e1b920820e10377fc955b957439198a.tar.gz | |
Remove quotes around $CONFIG_LINKS. Caused improper expansion.
Diffstat (limited to 'configure.in')
| -rw-r--r-- | configure.in | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/configure.in b/configure.in index 70b83da76f..437b5127e6 100644 --- a/configure.in +++ b/configure.in @@ -1,5 +1,5 @@ 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 Developers, please strive to achieve this order: dnl @@ -1237,7 +1237,7 @@ case $host_os in mingw*) AC_CONFIG_COMMANDS([check_win32_symlinks],[ # Links sometimes fail undetected on Mingw - # so here we detect it and warn the user -for FILE in "$CONFIG_LINKS" +for FILE in $CONFIG_LINKS do # test -e works for symlinks in the MinGW console test -e `expr "$FILE" : '\(^:*\)'` || AC_MSG_WARN([*** link for $FILE - please fix by hand]) |
