summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/ChangeLog3
-rw-r--r--src/Makefile.in8
2 files changed, 7 insertions, 4 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index df3973d91..df1831a28 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,5 +1,8 @@
1998-05-27 Theodore Ts'o <tytso@rsts-11.mit.edu>
+ * Makefile.in: Don't depend on $(RM) macro being defined when
+ building kerbsrc-nt.zip
+
* Makefile.in: include krb5/ccache/memory and windows/lib in
the list of directories built by the Windows build.
When building kerbsrc-nt.zip, put a copy of mkbin.bat
diff --git a/src/Makefile.in b/src/Makefile.in
index 6d9260eff..d805226db 100644
--- a/src/Makefile.in
+++ b/src/Makefile.in
@@ -467,16 +467,16 @@ KRBHDEP = $(INC)krb5.hin $(INC)krb5_err.h $(INC)kdb5_err.h \
$(INC)kv5m_err.h $(INC)asn1_err.h
$(INC)krb5.h: $(KRBHDEP)
- $(RM) $@
+ rm -f $@
cat $(KRBHDEP) > $@
$(PR)profile.h: $(PR)profile.hin $(PR)prof_err.h
- $(RM) $@
+ rm -f $@
cat $(PR)profile.hin $(PR)prof_err.h > $@
$(GG)gssapi.h: $(GG)gssapi.hin
- $(RM) $@
+ rm -f $@
cat $(GG)gssapi.hin > $@
awk-windows-mac: $(ETOUT) $(HOUT)
clean-windows-mac:
- $(RM) $(CLEANUP)
+ rm -f $(CLEANUP)