Closed openhpi2 closed 8 years ago
older autotools do not define docdir. So the build fails with Makefile.am:120: doc_DATA' is used butdocdir' is undefined
doc_DATA' is used but
The following lines could be added to configure.ac to define the docdir
+dnl Old autotools do not define docdir +AC_SUBST([docdir]) +if test x$docdir = x; then
Reported by: dr_mohan
Please review the attached patch.
Original comment by: dr_mohan
Fixed in checkin 7615
older autotools do not define docdir. So the build fails with Makefile.am:120:
doc_DATA' is used but
docdir' is undefinedThe following lines could be added to configure.ac to define the docdir
+dnl Old autotools do not define docdir +AC_SUBST([docdir]) +if test x$docdir = x; then
Reported by: dr_mohan