From: Michael Meffie Date: Fri, 22 Nov 2013 16:50:11 +0000 (-0500) Subject: libafscp: makefile install rule update X-Git-Tag: upstream/1.8.0_pre1^2~817 X-Git-Url: https://git.michaelhowe.org/gitweb/?a=commitdiff_plain;h=52fe3f52de95b698c93ca5da3c1ed59447817610;p=packages%2Fo%2Fopenafs.git libafscp: makefile install rule update Change the makefile install rules to install the header file from the libafscp directory, and not the top level include directory to make the install rules consistent with the rest of the tree. Change-Id: Ia06c29e72f7005569f2d11d3d0f6691413e0eeec Reviewed-on: http://gerrit.openafs.org/10514 Tested-by: BuildBot Reviewed-by: Benjamin Kaduk Reviewed-by: Derrick Brashear --- diff --git a/src/libafscp/Makefile.in b/src/libafscp/Makefile.in index 16dbe9a8b..32d3cd2f6 100644 --- a/src/libafscp/Makefile.in +++ b/src/libafscp/Makefile.in @@ -49,13 +49,13 @@ install: all ${INSTALL} -d ${DESTDIR}${libdir} ${INSTALL} -d ${DESTDIR}${includedir}/afs ${INSTALL_DATA} libafscp.a ${DESTDIR}${libdir}/libafscp.a - ${INSTALL_DATA} ${TOP_INCDIR}/afs/afscp.h ${DESTDIR}${includedir}/afs/afscp.h + ${INSTALL_DATA} afscp.h ${DESTDIR}${includedir}/afs/afscp.h dest: all ${INSTALL} -d ${DEST}/lib ${INSTALL} -d ${DEST}/include/afs ${INSTALL_DATA} libafscp.a ${DEST}/lib/libafscp.a - ${INSTALL_DATA} ${TOP_INCDIR}/afs/afscp.h ${DEST}/include/afs/afscp.h + ${INSTALL_DATA} afscp.h ${DEST}/include/afs/afscp.h # # Misc targets