]> sourceware.org Git - libabigail.git/commitdiff
Fix a thinko in doc/Makefile.am
authorDodji Seketeli <dodji@redhat.com>
Wed, 19 Nov 2014 16:28:21 +0000 (17:28 +0100)
committerDodji Seketeli <dodji@redhat.com>
Wed, 19 Nov 2014 16:28:21 +0000 (17:28 +0100)
* apidoc-install-html-doxygen: Make sure that the directory
$(DESTDIR)$(docdir) does not exist, before trying to create it.

Signed-off-by: Dodji Seketeli <dodji@redhat.com>
doc/Makefile.am

index 3cfb07c3cc5c04f5be26009c4568f9c507441ce7..65c0bef105177eb1f72bc055481cb3d07a1fd9eb 100644 (file)
@@ -47,7 +47,7 @@ website-html-doxygen: doxygen-website-cfg
        doxygen $(DOXY_WEBSITE_BLD_CFG)
 
 apidoc-install-html-doxygen: apidoc-html-doxygen
-       test -z "$(DESTDIR)$(docdir)" || $(mkinstalldirs) "$(DESTDIR)$(docdir)"
+       test -d "$(DESTDIR)$(docdir)" || $(mkinstalldirs) "$(DESTDIR)$(docdir)"
        cp -r ${DOXY_API_BLD_DIR} "$(DESTDIR)$(docdir)"
 
 website-install-html-doxygen: doxygen-website-cfg
This page took 0.032763 seconds and 5 git commands to generate.