summaryrefslogtreecommitdiffstats
path: root/wintools
diff options
context:
space:
mode:
authorDimitri van Heesch <dimitri@stack.nl>2001-01-07 17:28:47 (GMT)
committerDimitri van Heesch <dimitri@stack.nl>2001-01-07 17:28:47 (GMT)
commit583cc3299ac171f473e4221b0b535ea616e4db03 (patch)
treee0730802a8bb7eac348a5e39cffb88118aa42020 /wintools
parent0c9bfb1e7fee31b0f35201e255096df4f6451035 (diff)
downloadDoxygen-583cc3299ac171f473e4221b0b535ea616e4db03.zip
Doxygen-583cc3299ac171f473e4221b0b535ea616e4db03.tar.gz
Doxygen-583cc3299ac171f473e4221b0b535ea616e4db03.tar.bz2
Release-1.2.4-20010107
Diffstat (limited to 'wintools')
-rwxr-xr-xwintools/make.pl8
1 files changed, 6 insertions, 2 deletions
diff --git a/wintools/make.pl b/wintools/make.pl
index 737f1ee..ace6944 100755
--- a/wintools/make.pl
+++ b/wintools/make.pl
@@ -11,8 +11,12 @@ use Cwd;
# get current working directory
$pwd=cwd();
-# work-around slashes problems for badly ported perl interpreters
-$pwd=~s{/}{\\}g;
+
+# work-around slashes problems for nmake
+if ($target eq "msvc")
+{
+ $pwd=~s{/}{\\}g;
+}
# create config file
open(FILE,">makeconfig") || die "Cannot create file makeconfig!";