openhpi2 / Open-HPI

Open HPI is an open source implementation of the SA Forum's Hardware Platform Interface (HPI). HPI provides an abstracted interface to managing computer hardware, typically for chassis and rack based servers
Other
3 stars 1 forks source link

docdir is not defined in older autotools #2566

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. 1865_docdir_undefined.patch.txt

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