aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xupdate.sh12
1 files changed, 12 insertions, 0 deletions
diff --git a/update.sh b/update.sh
index 9c49ad5..f16afac 100755
--- a/update.sh
+++ b/update.sh
@@ -309,4 +309,16 @@ echo "copying manpages"
309 echo " \$(DESTDIR)\$(mandir)/man3/$2" >> Makefile.am 309 echo " \$(DESTDIR)\$(mandir)/man3/$2" >> Makefile.am
310 done 310 done
311 echo "endif" >> Makefile.am 311 echo "endif" >> Makefile.am
312 echo "" >> Makefile.am
313 echo "uninstall-local:" >> Makefile.am
314 for i in $SSL_MLINKS; do
315 IFS=","; set $i; unset IFS
316 echo " -rm -f \$(DESTDIR)\$(mandir)/man3/$2" >> Makefile.am
317 done
318 echo "if ENABLE_LIBTLS" >> Makefile.am
319 for i in $TLS_MLINKS; do
320 IFS=","; set $i; unset IFS
321 echo " rm -f \$(DESTDIR)\$(mandir)/man3/$2" >> Makefile.am
322 done
323 echo "endif" >> Makefile.am
312) 324)