On Sun, Feb 05, 2006 at 01:22:31PM +0100, Guido Ostkamp wrote:
> 
> Hello,
> 
> autogen.sh fails with this message:
> 
> Makefile.am:21: DOC_DIRS must be set with `=' before using `+='

This should be fixed in the second patch I posted there:
https://savannah.gnu.org/patch/?func=detailitem&item_id=4865
but it contains many more changes. I attach a Makefile.am diff that
should solve that issue and conatains other changes.

--
Pat
Index: Makefile.am
===================================================================
RCS file: /sources/gnash/gnash/Makefile.am,v
retrieving revision 1.10
diff -u -3 -p -r1.10 Makefile.am
--- Makefile.am 4 Feb 2006 19:57:37 -0000       1.10
+++ Makefile.am 5 Feb 2006 13:51:11 -0000
@@ -15,14 +15,14 @@ ACLOCAL_AMFLAGS = -I macros
 
 STD_DIRS = libbase libgeometry server backend utilities
 if PLUGIN
-PLUG_DIR = $(STD_DIRS) plugin
+PLUG_DIR = plugin
 endif
 if DOCBOOK
-DOC_DIRS += $(STD_DIRS) doc
+DOC_DIRS = doc
 endif
-SUBDIRS = $(STD_DIRS) $(PLUG_DIR)
-DIST_SUBDIRS = $(STD_DIRS)  $(PLUG_DIR) $(DOC_DIRS) testsuite
-EXTRA_DIST = macros
+SUBDIRS = $(STD_DIRS) $(PLUG_DIR) $(DOC_DIRS)
+DIST_SUBDIRS = $(STD_DIRS) $(PLUG_DIR) $(DOC_DIRS) testsuite
+
 # if HTTP
 # SUBDIRS += net $(STD_DIRS)
 # else
_______________________________________________
Gnash mailing list
[email protected]
http://lists.gnu.org/mailman/listinfo/gnash

Reply via email to