summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorjsorg71 <jsorg71>2007-07-03 04:18:23 +0000
committerjsorg71 <jsorg71>2007-07-03 04:18:23 +0000
commit2a1b60a173442f8ca9c20b9214a8b9a3a90f8c68 (patch)
tree5254c913b4dd2d1ee9fea87defcc86586ee519ab
parent76a8cf16898e296047a9f1214fbc7dfa279dcf10 (diff)
downloadxrdp-proprietary-2a1b60a173442f8ca9c20b9214a8b9a3a90f8c68.tar.gz
xrdp-proprietary-2a1b60a173442f8ca9c20b9214a8b9a3a90f8c68.zip
added -f parameter to ln
-rw-r--r--sesman/libscp/Makefile6
1 files 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