Author: ivanovic
Date: Sun Apr 12 19:48:08 2009
New Revision: 34805

URL: http://svn.gna.org/viewcvs/wesnoth?rev=34805&view=rev
Log:
fix problem with missing files when creating tarball (never needed this before, 
now it seels to be required, ARGH!)

Modified:
    branches/1.6/doc/man/Makefile.am

Modified: branches/1.6/doc/man/Makefile.am
URL: 
http://svn.gna.org/viewcvs/wesnoth/branches/1.6/doc/man/Makefile.am?rev=34805&r1=34804&r2=34805&view=diff
==============================================================================
--- branches/1.6/doc/man/Makefile.am (original)
+++ branches/1.6/doc/man/Makefile.am Sun Apr 12 19:48:08 2009
@@ -46,6 +46,8 @@
        for i in $(MAN_LANG); do \
                mkdir -p $(distdir)/$$i ; \
                for j in $(MAN_PAGES); do \
-                       $(INSTALL) -c -m 644 $(srcdir)/$$i/$$j 
$(distdir)/$$i/$$j ; \
+                       if test -f $(srcdir)/$$i/$$j; then \
+                               $(INSTALL) -c -m 644 $(srcdir)/$$i/$$j 
$(distdir)/$$i/$$j ; \
+                       fi \
                done \
        done


_______________________________________________
Wesnoth-commits mailing list
[email protected]
https://mail.gna.org/listinfo/wesnoth-commits

Reply via email to