1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-23 04:23:08 +00:00

Changed flags for ln in the install: target in the Makefile to -s to -fs.

Noticed by:	asami
This commit is contained in:
Masafumi Max NAKANE 1996-10-16 08:15:19 +00:00
parent a1a6d48072
commit f005e69fa5
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=4001

View File

@ -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)