diff options
| author | Ken Raeburn <raeburn@mit.edu> | 2002-08-29 12:14:44 +0000 |
|---|---|---|
| committer | Ken Raeburn <raeburn@mit.edu> | 2002-08-29 12:14:44 +0000 |
| commit | d9fee649d277cf0ec1f4f9d62a0bbe6f63d1cf03 (patch) | |
| tree | 1ea2701de2a0878b5dce0e372bc511b772a73eed /src/util | |
| parent | 14bb562f33dd5205ebbaee6a685ff66f7bc9638a (diff) | |
| download | krb5-d9fee649d277cf0ec1f4f9d62a0bbe6f63d1cf03.tar.gz krb5-d9fee649d277cf0ec1f4f9d62a0bbe6f63d1cf03.tar.xz krb5-d9fee649d277cf0ec1f4f9d62a0bbe6f63d1cf03.zip | |
* Makefile.in (MAYBE_ET-k5, MAYBE_ET-sys, MAYBE_SS-k5, MAYBE_SS-sys): New
variables.
(MY_SUBDIRS): Refer to them, choosing via new configure substitutions.
git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@14797 dc483132-0cff-0310-8789-dd5450dbe970
Diffstat (limited to 'src/util')
| -rw-r--r-- | src/util/ChangeLog | 5 | ||||
| -rw-r--r-- | src/util/Makefile.in | 8 |
2 files changed, 12 insertions, 1 deletions
diff --git a/src/util/ChangeLog b/src/util/ChangeLog index 33e02e1a7..76976464e 100644 --- a/src/util/ChangeLog +++ b/src/util/ChangeLog @@ -1,5 +1,10 @@ 2002-08-29 Ken Raeburn <raeburn@mit.edu> + * Makefile.in (MAYBE_ET-k5, MAYBE_ET-sys, MAYBE_SS-k5, + MAYBE_SS-sys): New variables. + (MY_SUBDIRS): Refer to them, choosing via new configure + substitutions. + * depfix.sed: Replace in-tree ss header files with $(SS_DEPS). 2002-08-23 Ken Raeburn <raeburn@mit.edu> diff --git a/src/util/Makefile.in b/src/util/Makefile.in index df631184e..2e3a54f8b 100644 --- a/src/util/Makefile.in +++ b/src/util/Makefile.in @@ -1,9 +1,15 @@ thisconfigdir=./.. myfulldir=util mydir=util -MY_SUBDIRS=et ss profile pty db2 send-pr +MY_SUBDIRS=$(MAYBE_ET-@COM_ERR_VERSION@) $(MAYBE_SS-@SS_VERSION@) \ + profile pty db2 send-pr BUILDTOP=$(REL).. +MAYBE_ET-k5 = et +MAYBE_SS-k5 = ss +MAYBE_ET-sys = +MAYBE_SS-sys = + MAC_SUBDIRS = profile et editsh = sed -e 's,@''ARADD''@,$(ARADD),g' -e 's,@''ARCHIVE''@,$(ARCHIVE),g' |
