This is a discussion on Automake error within the pgsql Interfaces Pgadmin Hackers forums, part of the PostgreSQL category; --> In the current svn, I had to make the following change, otherwise automake would refuse to complete: Index: Makefile.am ...
| |||||||
| FAQ | Members List | Calendar | Search | Today's Posts | Mark Forums Read |
| ||||
| In the current svn, I had to make the following change, otherwise automake would refuse to complete: Index: Makefile.am ================================================== ================= --- Makefile.am (Revision 5229) +++ Makefile.am (Arbeitskopie) @@ -51,13 +51,9 @@ $(top_srcdir)/docs/en_US/slony/*.css \ $(top_srcdir)/docs/en_US/slony/*.html -if INSTALL_DOCS TMP_docs = \ $(TMP_docs_local) \ $(TMP_docs_external) -else -TMP_docs = -endif if !APPBUNDLE nobase_dist_pkgdata_DATA = $(TMP_docs) This makes sense, because the INSTALL_DOCS conditional isn't defined anywhere. -- Peter Eisentraut http://developer.postgresql.org/~petere/ ---------------------------(end of broadcast)--------------------------- TIP 6: explain analyze is your friend |
| ||||
| > -----Original Message----- > From: pgadmin-hackers-owner@postgresql.org > [mailto > Peter Eisentraut > Sent: 16 June 2006 14:53 > To: pgadmin-hackers@postgresql.org > Subject: [pgadmin-hackers] Automake error > > In the current svn, I had to make the following change, > otherwise automake > would refuse to complete: > > Index: Makefile.am > ================================================== ================= > --- Makefile.am (Revision 5229) > +++ Makefile.am (Arbeitskopie) > @@ -51,13 +51,9 @@ > $(top_srcdir)/docs/en_US/slony/*.css \ > $(top_srcdir)/docs/en_US/slony/*.html > > -if INSTALL_DOCS > TMP_docs = \ > $(TMP_docs_local) \ > $(TMP_docs_external) > -else > -TMP_docs = > -endif > > if !APPBUNDLE > nobase_dist_pkgdata_DATA = $(TMP_docs) > > This makes sense, because the INSTALL_DOCS conditional isn't > defined anywhere. I see it defined in acinclude.m4 - perhaps you need to rerun bootstrap.sh? Regards, Dave. ---------------------------(end of broadcast)--------------------------- TIP 3: Have you checked our extensive FAQ? http://www.postgresql.org/docs/faq |