Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/Jajcus/pyxmpp.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJacek Konieczny <jajcus@jajcus.net>2003-11-24 21:42:11 +0300
committerJacek Konieczny <jajcus@jajcus.net>2003-11-24 21:42:11 +0300
commit7509f70d08aa244214b788debe830e6847e569c0 (patch)
tree614a3ea1bb6c47d19b1db489e9d508d36a5e1c31 /Makefile
parent1ed7d78294a28f59ebea3d92cce7c578bc6e6ec3 (diff)
- '-f' option to 'ln' doesn't always mean the same
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile8
1 files changed, 4 insertions, 4 deletions
diff --git a/Makefile b/Makefile
index a737500..0a7dc8f 100644
--- a/Makefile
+++ b/Makefile
@@ -7,10 +7,10 @@ DESTDIR="/"
all: version
umask 022 ; python setup.py build
- cd examples && ln -sf ../build/lib*/pyxmpp .
- cd examples && chmod a+x *.py
- cd tests && ln -sf ../build/lib*/pyxmpp .
- cd tests && chmod a+x *.py
+ cd examples ; rm -f pyxmpp 2>/dev/null ; ln -s ../build/lib*/pyxmpp .
+ cd examples ; chmod a+x *.py
+ cd tests ; rm -f pyxmpp 2>/dev/null ; ln -sf ../build/lib*/pyxmpp .
+ cd tests ; chmod a+x *.py
version:
if test -f "CVS/Entries" ; then \