* windows.in: Rewrite some of the directory syntax
authorTom Yu <tlyu@mit.edu>
Wed, 18 Feb 1998 23:09:47 +0000 (23:09 +0000)
committerTom Yu <tlyu@mit.edu>
Wed, 18 Feb 1998 23:09:47 +0000 (23:09 +0000)
* pre.in: Rewrite some of the directory syntax.

* mac-pre.in: Rewrite some of the directory syntax.

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

src/config/ChangeLog
src/config/mac-pre.in
src/config/pre.in
src/config/windows.in

index a5d96cc6d5b0330abc141821a98eacd68729bdf1..fca25b50cbcae99797ef5737ba51a993b76fa6f7 100644 (file)
@@ -1,3 +1,11 @@
+Wed Feb 18 17:31:52 1998  Tom Yu  <tlyu@mit.edu>
+
+       * windows.in: Rewrite some of the directory syntax.
+
+       * pre.in: Rewrite some of the directory syntax.
+
+       * mac-pre.in: Rewrite some of the directory syntax.
+
 Fri Feb 13 22:16:51 1998  Theodore Y. Ts'o  <tytso@mit.edu>
 
        * config.guess, config.sub: Applied lxs's changes to add support
index 862092322fb4fdcaa3fb98c97c36e3b822312710..5200ef0c6d2772fa64b7b9ddec644ea5d869581b 100644 (file)
@@ -94,10 +94,17 @@ install-mac::
 check-mac::
 
 # Directory syntax:
-R=
-C=:
+#
+# begin absolute path
+ABS=
+# begin relative path
+REL=:
+# up-directory
+U=
+# path separator
 S=:
-U=:
+# this is magic... should only be used for preceding a program invocation
+C=:
 
 BUILDTOP = @BUILDTOP@
 srcdir = $(C)
index 561b1def58bf6f22011168103657099319239b51..c8fca5b0896c59e763109e6400df69b29e18419e 100644 (file)
@@ -52,10 +52,17 @@ Makefiles-prerecurse::
 Makefiles-postrecurse::
 
 # Directory syntax:
-R=/
-C=./
+#
+# begin absolute path
+ABS=/
+# begin relative path
+REL=
+# up-directory
+U=..
+# path separator
 S=/
-U=../
+# this is magic... should only be used for preceding a program invocation
+C=./
 
 SUBDIRS = @subdirs@ $(LOCAL_SUBDIRS)
 srcdir = @srcdir@
index cb3315b03d6acaa3ac0997a073d21d177a5eb2bc..4195a10bca6a2926f6dd0030f173a3f11510d96a 100644 (file)
@@ -14,10 +14,17 @@ check-windows::
 all-windows:: Makefile
 
 # Directory syntax:
-R=\            # root
-C=.\           # current
-S=\            # seperator
-U=..\          # up one level
+#
+# begin absolute path
+ABS=\
+# begin relative path
+REL=
+# up-directory
+U=..
+# path separator
+S=\
+# this is magic... should only be used for preceding a program invocation
+C=.\
 
 srcdir = .
 SRCTOP = $(srcdir)\$(BUILDTOP)