summaryrefslogtreecommitdiff
path: root/utils
diff options
context:
space:
mode:
authorMichael Jennings <mej@kainx.org>2001-09-22 16:42:18 +0000
committerMichael Jennings <mej@kainx.org>2001-09-22 16:42:18 +0000
commitd3cd984907a5ab030458b799f8611ff1ed48abdb (patch)
tree4abf9678d914c7f3bc718518982b51766171de1c /utils
parent740a7b7ab868ba57be3b28ec11a8047ff87e2c7a (diff)
downloadeterm-d3cd984907a5ab030458b799f8611ff1ed48abdb.tar.gz
Sat Sep 22 09:41:26 2001 Michael Jennings (mej)
Fixes for Solaris where ln requires a certain argument order. SVN revision: 5367
Diffstat (limited to 'utils')
-rwxr-xr-xutils/Etbg_update_list2
1 files changed, 1 insertions, 1 deletions
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