doc: Don't list directories in list of files to install
authorKristian Høgsberg <krh@bitplanet.net>
Fri, 16 Mar 2012 13:26:05 +0000 (09:26 -0400)
committerKristian Høgsberg <krh@bitplanet.net>
Fri, 16 Mar 2012 13:26:05 +0000 (09:26 -0400)
The find expression was listing the xml_tmp directory, because it matched
the -prune rule.

doc/Wayland/Makefile.am

index 5c53ff0..bc50e9e 100644 (file)
@@ -51,7 +51,7 @@ install-data-local:
        test -z "$(pubdir)/xml/Common_Content/css" || $(mkdir_p) "$(DESTDIR)$(pubdir)/xml/Common_Content/css"
        test -z "$(pubdir)/xml/Common_Content/images" || $(mkdir_p) "$(DESTDIR)$(pubdir)/xml/Common_Content/images"
        test -z "$(pubdir)/xml/images" || $(mkdir_p) "$(DESTDIR)$(pubdir)/xml/images"
-       list=`find $(builddir)/Wayland/en-US -path './Wayland/en-US/xml_tmp' -prune -o -type f`; \
+       list=`find $(builddir)/Wayland/en-US -type f -not -path '$(builddir)/Wayland/en-US/xml_tmp*'`; \
        for p in $$list; do \
          echo " $(INSTALL_DATA) '$$p' '$(DESTDIR)$(docdir)/$$p'"; \
          $(INSTALL_DATA) "$$p" "$(DESTDIR)$(docdir)/$$p"; \