diff options
author | max <max@FreeBSD.org> | 1996-10-16 08:15:19 +0000 |
---|---|---|
committer | max <max@FreeBSD.org> | 1996-10-16 08:15:19 +0000 |
commit | 73013c32f46931f872002f1b66f4227d6b00159f (patch) | |
tree | 5efc35b3873cf7f2a61828d6807a2bd6a5dc9d82 /security/donkey | |
parent | 7f57b02b8518e99e8e7cc893ae7c7cf2702dc9d4 (diff) | |
download | FreeBSD-ports-73013c32f46931f872002f1b66f4227d6b00159f.zip FreeBSD-ports-73013c32f46931f872002f1b66f4227d6b00159f.tar.gz |
Changed flags for ln in the install: target in the Makefile to -s to -fs.
Noticed by: asami
Diffstat (limited to 'security/donkey')
-rw-r--r-- | security/donkey/files/patch-aa | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/security/donkey/files/patch-aa b/security/donkey/files/patch-aa index 14cbf23..4bd8258 100644 --- a/security/donkey/files/patch-aa +++ b/security/donkey/files/patch-aa @@ -1,5 +1,5 @@ *** src/Makefile.in.orig Sun Apr 30 14:13:56 1995 ---- src/Makefile.in Thu Sep 19 03:17:50 1996 +--- src/Makefile.in Wed Oct 16 17:03:57 1996 *************** *** 2,8 **** # Makefile for Donkey @@ -36,19 +36,21 @@ DEFS = @DEFS@ #DEFS = -DDefaultMD=MD5 *************** -*** 25,31 **** +*** 25,32 **** $(CC) -o $(PROG) $(CFLAGS) $(OBJS) $(LIBS) install: ! cp $(PROG) $(BINDIR) - ln -s $(PROG) $(BINDIR)/$(CMPT) +! ln -s $(PROG) $(BINDIR)/$(CMPT) clean: ---- 26,32 ---- + rm -f $(PROG) $(OBJS) +--- 26,33 ---- $(CC) -o $(PROG) $(CFLAGS) $(OBJS) $(LIBS) install: ! install -cs -o bin -g bin -m 755 $(PROG) $(BINDIR) - ln -s $(PROG) $(BINDIR)/$(CMPT) +! ln -fs $(PROG) $(BINDIR)/$(CMPT) clean: + rm -f $(PROG) $(OBJS) |