openhpi2 / openhpi_bug_test

0 stars 0 forks source link

docdir is not defined in older autotools #1865

Closed openhpi2 closed 8 years ago

openhpi2 commented 9 years ago

older autotools do not define docdir. So the build fails with Makefile.am:120: doc_DATA' is used butdocdir' is undefined

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

openhpi2 commented 9 years ago

Please review the attached patch.

Original comment by: dr_mohan

openhpi2 commented 9 years ago

Original comment by: dr_mohan

openhpi2 commented 9 years ago

Fixed in checkin 7615

Original comment by: dr_mohan