aboutsummaryrefslogtreecommitdiffstats
path: root/configure
diff options
context:
space:
mode:
authorTristan Gingold <tgingold@free.fr>2017-06-17 21:57:29 +0200
committerTristan Gingold <tgingold@free.fr>2017-06-17 21:57:29 +0200
commitf023bbb2abc825b662c687a9ad610600cbd55c77 (patch)
treec8a32476c03e6b522bccf84aebb0d954dad58eba /configure
parentc429d3e572d8ef2b8d9f7a24bd1a16f8ab8c42a6 (diff)
downloadghdl-f023bbb2abc825b662c687a9ad610600cbd55c77.tar.gz
ghdl-f023bbb2abc825b662c687a9ad610600cbd55c77.tar.bz2
ghdl-f023bbb2abc825b662c687a9ad610600cbd55c77.zip
Avoid MSYS2 path translation.
Fix #365
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure b/configure
index 36ae4e415..59687800c 100755
--- a/configure
+++ b/configure
@@ -104,7 +104,7 @@ case $srcdir in
*)
# Use a Windows path on windows.
case "$OS" in
- Windows_NT) abs_srcdir=`pwd -W`/$srcdir ;;
+ Windows_NT) abs_srcdir="`pwd -W`/$srcdir" ;;
*) abs_srcdir=`pwd`/$srcdir ;;
esac
;;