diff options
-rwxr-xr-x | update.sh | 12 |
1 files changed, 12 insertions, 0 deletions
@@ -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 | ) |