On Monday 15 October 2007, Alon Bar-Lev wrote:
> On Monday 15 October 2007, Michael Halcrow wrote:
> > On Wed, Oct 10, 2007 at 10:01:13PM +0200, Alon Bar-Lev wrote:
> > > Another update to build system. Am am available for you, please free
> > > to ask any question regarding the autoconf/automake I will try my
> > > best to provide solutions for any issue you have.
> > 
> > autoreconf -i -v -f on RHEL 5 results in:
> > 
> > ---
> > autoreconf: running: automake --add-missing --copy --force-missing
> > doc/Makefile.am:5: `dist_html_DATA' is used but `htmldir' is undefined
> > autoreconf: automake failed with exit status: 1
> > ---
> > 
> > Mike
> > 
> 
> 
> Try this.
> 
> ---

Actually this is better... :)

---

diff -urNp ecryptfs-utils-26.d1/configure.ac ecryptfs-utils-26.d2/configure.ac
--- ecryptfs-utils-26.d1/configure.ac   2007-10-15 23:30:57.000000000 +0200
+++ ecryptfs-utils-26.d2/configure.ac   2007-10-15 23:40:18.000000000 +0200
@@ -289,9 +289,14 @@ AM_CONDITIONAL([BUILD_DOCS_GEN], [test "
 
 # workaround for <autoconf-2.60
 if test -z "${docdir}"; then
-       docdir="\${datarootdir}/doc/${PACKAGE_NAME}"
+       docdir="\$(datarootdir)/doc/\$(PACKAGE_NAME)"
        AC_SUBST([docdir])
 fi
+if test -z "${htmldir}"; then
+       htmldir="\$(docdir)"
+       AC_SUBST([htmldir])
+fi
+# end workaround
 
 
 AC_CONFIG_FILES([

-------------------------------------------------------------------------
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now >> http://get.splunk.com/
_______________________________________________
eCryptfs-devel mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/ecryptfs-devel

Reply via email to