diff options
author | rocky <rocky@gnu.org> | 2012-09-26 20:33:08 -0400 |
---|---|---|
committer | rocky <rocky@gnu.org> | 2012-09-26 20:33:08 -0400 |
commit | f3cdade5c87aab6fd30e95487da75d713b5fb728 (patch) | |
tree | 50747578c67feb71e9ed78326aa6280e782ba8c9 | |
parent | fafd28f60823ea9dcb248f90bb5597a70f4ef946 (diff) |
A more specific use of bash's pwd builtin
-rw-r--r-- | configure.ac | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac index 0d95e0a2..2f321a17 100644 --- a/configure.ac +++ b/configure.ac @@ -410,7 +410,7 @@ int has_timeout=sizeof(test.timeout);], mingw*) # regression tests need native-style absolute paths. # ac_pwd is used to build top_abs_srcdir. - ac_pwd=$(cd $srcdir; builtin pwd -W) + ac_pwd=$(cd $srcdir; /bin/bash.exe -c 'builtin pwd -W') AC_CHECK_HEADERS(windows.h) AC_DEFINE([MINGW32], [1], |