From d3cd984907a5ab030458b799f8611ff1ed48abdb Mon Sep 17 00:00:00 2001 From: Michael Jennings Date: Sat, 22 Sep 2001 16:42:18 +0000 Subject: [PATCH] Sat Sep 22 09:41:26 2001 Michael Jennings (mej) Fixes for Solaris where ln requires a certain argument order. SVN revision: 5367 --- ChangeLog | 4 ++++ Eterm.spec.in | 2 +- utils/Etbg_update_list | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/ChangeLog b/ChangeLog index a8dc007..4539657 100644 --- a/ChangeLog +++ b/ChangeLog @@ -4392,3 +4392,7 @@ While I'm at it, here's a patch to fix some escape sequence handling under vim from Paul W Brannan . This patch is reported to fix problems where vim would come up with underlines. ---------------------------------------------------------------------- +Sat Sep 22 09:41:26 2001 Michael Jennings (mej) + +Fixes for Solaris where ln requires a certain argument order. +---------------------------------------------------------------------- diff --git a/Eterm.spec.in b/Eterm.spec.in index c9fd6a9..08215c2 100644 --- a/Eterm.spec.in +++ b/Eterm.spec.in @@ -47,7 +47,7 @@ make DESTDIR=$RPM_BUILD_ROOT install ( cd $RPM_BUILD_ROOT mv .%{_bindir}/%{name} .%{_bindir}/%{name}-%{version} cd $RPM_BUILD_ROOT%{_bindir} - ln -sf %{name}-%{version} %{name} + ln -f -s %{name}-%{version} %{name} cd $RPM_BUILD_ROOT chmod +x .%{_libdir}/lib*so* ||: ) diff --git a/utils/Etbg_update_list b/utils/Etbg_update_list index 130f508..3e1a797 100755 --- a/utils/Etbg_update_list +++ b/utils/Etbg_update_list @@ -63,6 +63,6 @@ cd ../themes for i in `ls -1` ; do if [ -f $i/theme.cfg -a ! -e $i/$LISTFILE ]; then echo "Creating symlink to $LISTFILE for theme $i" - (cd $i && ln -sf ../../pix/$LISTFILE $LISTFILE) + (cd $i && ln -f -s ../../pix/$LISTFILE $LISTFILE) fi done