Skip to content

Commit

Permalink
Avoid make dist fail when doxyout/ does not exist
Browse files Browse the repository at this point in the history
  • Loading branch information
Viktor Dukhovni authored and nicowilliams committed Mar 17, 2017
1 parent 9633813 commit 7e05001
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion doc/Makefile.am
Expand Up @@ -68,7 +68,8 @@ PROJECTS = base hdb hx509 gssapi krb5 ntlm wind
PROJECTS += hcrypto

doxyout doxygen: base.dxy hdb.dxy hx509.dxy hcrypto.dxy gssapi.dxy krb5.dxy ntlm.dxy wind.dxy
@find $(srcdir)/doxyout -type d ! -perm -200 -exec chmod u+w {} ';' ; \
@test -d $(srcdir)/doxyout && \
find $(srcdir)/doxyout -type d ! -perm -200 -exec chmod u+w {} ';' ; \
rm -rf $(srcdir)/doxyout ; \
mkdir $(srcdir)/doxyout ; \
for a in $(PROJECTS) ; do \
Expand Down

0 comments on commit 7e05001

Please sign in to comment.