summaryrefslogtreecommitdiff
path: root/configure.in
diff options
context:
space:
mode:
authorBruce Momjian2004-06-08 14:06:35 +0000
committerBruce Momjian2004-06-08 14:06:35 +0000
commit327d86ca99a47174edfc70e56c4098186694b536 (patch)
treed331584d8f2ed5a2dc380c340dd66394c8885d3a /configure.in
parentce04221a1ee3a4721a0e23abf6fcfd38c2bf84d5 (diff)
Fix mingw link check by using double-brackets.
Diffstat (limited to 'configure.in')
-rw-r--r--configure.in4
1 files changed, 2 insertions, 2 deletions
diff --git a/configure.in b/configure.in
index 67c57abfdc7..2c653c236a4 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.361 2004/06/07 22:39:43 momjian Exp $
+dnl $PostgreSQL: pgsql/configure.in,v 1.362 2004/06/08 14:06:35 momjian Exp $
dnl
dnl Developers, please strive to achieve this order:
dnl
@@ -1241,7 +1241,7 @@ AC_CONFIG_COMMANDS([check_win32_symlinks],[
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])
+ test -e `expr "$FILE" : '\([[^:]]*\)'` || AC_MSG_WARN([*** link for $FILE - please fix by hand])
done
])
;;