summaryrefslogtreecommitdiff
path: root/aconfigure
diff options
context:
space:
mode:
Diffstat (limited to 'aconfigure')
-rwxr-xr-xaconfigure9
1 files changed, 8 insertions, 1 deletions
diff --git a/aconfigure b/aconfigure
index b53ce25a..5f65eaa9 100755
--- a/aconfigure
+++ b/aconfigure
@@ -2744,7 +2744,14 @@ ac_compiler_gnu=$ac_cv_c_compiler_gnu
-ac_pjdir=`pwd`
+case $target in
+ *mingw* | *cygw* | *win32* | *w32* )
+ ac_pjdir=`pwd -W`
+ ;;
+ *)
+ ac_pjdir=`pwd`
+ ;;
+esac