CVSROOT: /cvsroot/wesnoth
Module name: wesnoth
Branch:
Changes by: Isaac Clerencia <[EMAIL PROTECTED]> 05/01/25 14:22:41
Modified files:
doc/man : Makefile.am
Log message:
Add $MAN_LANG dirs/ to tarball in make dist
CVSWeb URLs:
http://savannah.gnu.org/cgi-bin/viewcvs/wesnoth/wesnoth/doc/man/Makefile.am.diff?tr1=1.2&tr2=1.3&r1=text&r2=text
Patches:
Index: wesnoth/doc/man/Makefile.am
diff -u wesnoth/doc/man/Makefile.am:1.2 wesnoth/doc/man/Makefile.am:1.3
--- wesnoth/doc/man/Makefile.am:1.2 Sun Jan 23 13:24:21 2005
+++ wesnoth/doc/man/Makefile.am Tue Jan 25 14:22:41 2005
@@ -19,3 +19,11 @@
done
if test -d $(DESTDIR)$(mandir)/man6 ; then echo `rmdir
$(DESTDIR)$(mandir)/man6` ; fi
if test -d $(DESTDIR)$(mandir) ; then echo `rmdir $(DESTDIR)$(mandir)`
; fi
+
+dist-hook:
+ for i in $(MAN_LANG); do \
+ mkdir -p $(distdir)/$$i ; \
+ for j in $(dist_man6_MANS); do \
+ $(INSTALL) -c -m 644 $(srcdir)/$$i/$$j
$(distdir)/$$i/$$j ; \
+ done \
+ done