Don't depend on $(RM) macro being defined when building kerbsrc-nt.zip
authorTheodore Tso <tytso@mit.edu>
Wed, 27 May 1998 21:31:24 +0000 (21:31 +0000)
committerTheodore Tso <tytso@mit.edu>
Wed, 27 May 1998 21:31:24 +0000 (21:31 +0000)
git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@10600 dc483132-0cff-0310-8789-dd5450dbe970

src/ChangeLog
src/Makefile.in

index df3973d91a1c16c513dd944891f2c8e5a8a031a7..df1831a283ac7da408dc283396faed085e9454e6 100644 (file)
@@ -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
index 6d9260eff8be268f80128357e14a1745a640435d..d805226db933409b41c6a80017b195da76174c73 100644 (file)
@@ -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)