aboutsummaryrefslogtreecommitdiff
path: root/update.sh
diff options
context:
space:
mode:
Diffstat (limited to 'update.sh')
-rwxr-xr-xupdate.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/update.sh b/update.sh
index 0a00c75..e7e8fd5 100755
--- a/update.sh
+++ b/update.sh
@@ -295,7 +295,7 @@ add_man_links() {
295 for i in `grep $filter man/links`; do 295 for i in `grep $filter man/links`; do
296 IFS=","; set $i; unset IFS 296 IFS=","; set $i; unset IFS
297 if [ "$2" != "" ]; then 297 if [ "$2" != "" ]; then
298 echo " ln -sf $1 \$(DESTDIR)\$(mandir)/man3/$2" >> $dest 298 echo " ln -sf \"$1\" \"\$(DESTDIR)\$(mandir)/man3/$2\"" >> $dest
299 fi 299 fi
300 done 300 done
301 echo "" >> $dest 301 echo "" >> $dest
@@ -303,7 +303,7 @@ add_man_links() {
303 for i in `grep $filter man/links`; do 303 for i in `grep $filter man/links`; do
304 IFS=","; set $i; unset IFS 304 IFS=","; set $i; unset IFS
305 if [ "$2" != "" ]; then 305 if [ "$2" != "" ]; then
306 echo " -rm -f \$(DESTDIR)\$(mandir)/man3/$2" >> $dest 306 echo " -rm -f \"\$(DESTDIR)\$(mandir)/man3/$2\"" >> $dest
307 fi 307 fi
308 done 308 done
309} 309}