From 2a1b60a173442f8ca9c20b9214a8b9a3a90f8c68 Mon Sep 17 00:00:00 2001 From: jsorg71 Date: Tue, 3 Jul 2007 04:18:23 +0000 Subject: [PATCH] added -f parameter to ln --- sesman/libscp/Makefile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/sesman/libscp/Makefile b/sesman/libscp/Makefile index 481226e0..804734c0 100644 --- a/sesman/libscp/Makefile +++ b/sesman/libscp/Makefile @@ -27,18 +27,18 @@ CC = gcc all: $(LIBSCPOBJ) $(CC) $(LDFLAGS) -o $(LIBSCPFNAME) $(LIBSCPOBJ) - ln -s $(LIBSCPFNAME) $(LIBSCPLNAME) + ln -f -s $(LIBSCPFNAME) $(LIBSCPLNAME) clean: rm -f $(LIBSCPOBJ) $(LIBSCPFNAME) $(LIBSCPLNAME) install: install $(LIBSCPFNAME) $(DESTDIR)/$(LIBSCPFNAME) - ln -s $(LIBSCPFNAME) $(DESTDIR)/$(LIBSCPLNAME) + ln -f -s $(LIBSCPFNAME) $(DESTDIR)/$(LIBSCPLNAME) installdeb: install $(LIBSCPFNAME) $(DESTDIRDEB)/usr/lib/xrdp/$(LIBSCPFNAME) - ln -s $(LIBSCPFNAME) $(DESTDIRDEB)/usr/lib/xrdp/$(LIBSCPLNAME) + ln -f -s $(LIBSCPFNAME) $(DESTDIRDEB)/usr/lib/xrdp/$(LIBSCPLNAME) os_calls.o: ../../common/os_calls.c $(CC) $(C_OS_FLAGS) ../../common/os_calls.c