Use double backslashes for the path separators to workaround Microsoft
authorTheodore Tso <tytso@mit.edu>
Mon, 25 May 1998 01:42:51 +0000 (01:42 +0000)
committerTheodore Tso <tytso@mit.edu>
Mon, 25 May 1998 01:42:51 +0000 (01:42 +0000)
NMAKE brain damaging.  Sometimes backslashes are treated as a quoting
characters, and sometimes not, with no rhyme or reason that I can
determine.  Fortunatelly double backslashes in pathanmes don't seem to
hurt (for the times when the backslash isn't treated as a quoating
character).  Whoever decided Windows should use backslash as a path
separator should be shot.

git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@10575 dc483132-0cff-0310-8789-dd5450dbe970

src/config/ChangeLog
src/config/windows.in

index da150fea4ee92ff046e55a5f4802a93859919fd2..723027e1a778edecc423d7a7b1ed6b53c05388ca 100644 (file)
@@ -1,3 +1,14 @@
+Sun May 24 21:39:49 1998  Theodore Y. Ts'o  <tytso@mit.edu>
+
+       * windows.in (ABS,S,C): Use double backslashes for the path
+               separators to workaround Microsoft NMAKE brain damaging.
+               Sometimes backslashes are treated as a quoting characters,
+               and sometimes not, with no rhyme or reason that I can
+               determine.  Fortunatelly double backslashes in pathanmes
+               don't seem to hurt (for the times when the backslash isn't
+               treated as a quoating character).  Whoever decided Windows
+               should use backslash as a path separator should be shot.
+
 Wed Apr 15 18:01:39 1998  Tom Yu  <tlyu@mit.edu>
 
        * pre.in (CRYPTO_DEPLIB):
index 4195a10bca6a2926f6dd0030f173a3f11510d96a..f0b8f592714f7da98de0a939f22f52b5ea5c77fd 100644 (file)
@@ -16,15 +16,15 @@ all-windows:: Makefile
 # Directory syntax:
 #
 # begin absolute path
-ABS=\
+ABS=\\
 # begin relative path
 REL=
 # up-directory
 U=..
 # path separator
-S=\
+S=\\
 # this is magic... should only be used for preceding a program invocation
-C=.\
+C=.\\
 
 srcdir = .
 SRCTOP = $(srcdir)\$(BUILDTOP)