[Xfce4-commits] r30105 - in terminal/branches/xfce_4_6: . terminal

Nick Schermer nick at xfce.org
Sat Jun 27 23:12:51 CEST 2009


Author: nick
Date: 2009-06-27 21:12:51 +0000 (Sat, 27 Jun 2009)
New Revision: 30105

Modified:
   terminal/branches/xfce_4_6/NEWS
   terminal/branches/xfce_4_6/terminal/Makefile.am
Log:
Check for case problems when creating the symlink (bug #4431).


Modified: terminal/branches/xfce_4_6/NEWS
===================================================================
--- terminal/branches/xfce_4_6/NEWS	2009-06-27 20:00:58 UTC (rev 30104)
+++ terminal/branches/xfce_4_6/NEWS	2009-06-27 21:12:51 UTC (rev 30105)
@@ -2,6 +2,7 @@
 ======
 - Fix segfault in special tab configuration (bug #3809).
 - Don't set contents change on resize (bug #5443).
+- Check for case problems when creating the symlink (bug #4431).
 
 0.2.12
 ======

Modified: terminal/branches/xfce_4_6/terminal/Makefile.am
===================================================================
--- terminal/branches/xfce_4_6/terminal/Makefile.am	2009-06-27 20:00:58 UTC (rev 30104)
+++ terminal/branches/xfce_4_6/terminal/Makefile.am	2009-06-27 21:12:51 UTC (rev 30105)
@@ -90,7 +90,7 @@
 # install symlink to 'terminal'
 install-data-local:
 	$(mkinstalldirs) $(DESTDIR)$(bindir)
-	-( cd $(DESTDIR)$(bindir) ; ln -sf Terminal terminal )
+	-( cd $(DESTDIR)$(bindir) ; test -x terminal || ln -sf Terminal terminal )
 
 if HAVE_DBUS
 Terminal_CFLAGS +=							\




More information about the Xfce4-commits mailing list