[Pkg-ocaml-maint-commits] r1605 - trunk/packages/unison/trunk/debian

Sylvain LE GALL gildor-guest at costa.debian.org
Sun Aug 14 15:59:22 UTC 2005


Author: gildor-guest
Date: 2005-08-14 15:59:22 +0000 (Sun, 14 Aug 2005)
New Revision: 1605

Modified:
   trunk/packages/unison/trunk/debian/rules
Log:
Correction from unison2.9.1 (forget to test for symlinks) -- SLG


Modified: trunk/packages/unison/trunk/debian/rules
===================================================================
--- trunk/packages/unison/trunk/debian/rules	2005-08-14 15:58:14 UTC (rev 1604)
+++ trunk/packages/unison/trunk/debian/rules	2005-08-14 15:59:22 UTC (rev 1605)
@@ -122,7 +122,7 @@
 	  FILENAME=$${i##*/}; \
 	  FILENAME=$${FILENAME/$(UNISON_ALTERNATIVE)/$(UNISON)}; \
 	  FILENAME=$${FILENAME/$(UNISON_GTK_ALTERNATIVE)/$(UNISON_GTK)}; \
-	  if ! [ -e $$i ]; then \
+	  if ! [ -e $$i ] && ! [ -L $$i ]; then \
 	    ln -s $$FILENAME \
 	      $$i; \
 	  fi \




More information about the Pkg-ocaml-maint-commits mailing list