From b465ed515998a7609a01c9c7bef7a5b949c8f203 Mon Sep 17 00:00:00 2001 From: Richard Basch Date: Thu, 6 Feb 1997 04:12:20 +0000 Subject: [PATCH] Makefile.in: Remove target before copying over it (avoids perm. errors) git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@9793 dc483132-0cff-0310-8789-dd5450dbe970 --- src/util/ss/ChangeLog | 6 ++++++ src/util/ss/Makefile.in | 3 ++- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/src/util/ss/ChangeLog b/src/util/ss/ChangeLog index 9cc2698ce..74ff4b573 100644 --- a/src/util/ss/ChangeLog +++ b/src/util/ss/ChangeLog @@ -1,3 +1,9 @@ +Wed Feb 5 22:52:41 1997 Richard Basch + + * Makefile.in: Remove the target ct_c.awk before copying over it. + If ct_c.awk.in were read-only, ct_c.awk will become + read-only and cannot be updated again. + Thu Jun 13 21:43:44 1996 Tom Yu * configure.in: remove ref to SS_RULES, ET_RULES diff --git a/src/util/ss/Makefile.in b/src/util/ss/Makefile.in index a6331e291..a4308890c 100644 --- a/src/util/ss/Makefile.in +++ b/src/util/ss/Makefile.in @@ -138,7 +138,8 @@ mk_cmds: $(srcdir)/mk_cmds.sh $(srcdir)/config_script chmod 755 mk_cmds ct_c.awk: $(srcdir)/ct_c_awk.in - $(CP) $(srcdir)/ct_c_awk.in ct_c.awk + $(RM) $@ + $(CP) $(srcdir)/ct_c_awk.in $@ ct_c.sed: $(srcdir)/ct_c_sed.in $(SED) -e '/^#/d' $(srcdir)/ct_c_sed.in > ct_c.sed -- 2.26.2