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.

---

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:32:17.000000000 +0200
@@ -292,6 +292,11 @@ if test -z "${docdir}"; then
        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