From 8842b6853c2a79892416944dc473238a7965471e Mon Sep 17 00:00:00 2001 From: Theodore Tso Date: Mon, 25 May 1998 01:42:51 +0000 Subject: [PATCH] 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. git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@10575 dc483132-0cff-0310-8789-dd5450dbe970 --- src/config/ChangeLog | 11 +++++++++++ src/config/windows.in | 6 +++--- 2 files changed, 14 insertions(+), 3 deletions(-) diff --git a/src/config/ChangeLog b/src/config/ChangeLog index da150fea4..723027e1a 100644 --- a/src/config/ChangeLog +++ b/src/config/ChangeLog @@ -1,3 +1,14 @@ +Sun May 24 21:39:49 1998 Theodore Y. Ts'o + + * 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 * pre.in (CRYPTO_DEPLIB): diff --git a/src/config/windows.in b/src/config/windows.in index 4195a10bc..f0b8f5927 100644 --- a/src/config/windows.in +++ b/src/config/windows.in @@ -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) -- 2.26.2