Sat Sep 22 09:41:26 2001 Michael Jennings (mej)

Fixes for Solaris where ln requires a certain argument order.


SVN revision: 5367
This commit is contained in:
Michael Jennings 2001-09-22 16:42:18 +00:00
parent 740a7b7ab8
commit d3cd984907
3 changed files with 6 additions and 2 deletions

View File

@ -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 <pbranna@clemson.edu>. 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.
----------------------------------------------------------------------

View File

@ -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* ||:
)

View File

@ -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