From fb1fc1880f5478376fae09ddc7c2ab72c79e341f Mon Sep 17 00:00:00 2001 From: Simon Wilkinson Date: Thu, 14 Jan 2010 16:57:15 +0000 Subject: [PATCH] Don't install compile_et into its own directory When pinstall sees that the basenames of its two arguments differ, it assumes that its installing into a path, and creates the missing directory. This meant that we got /usr/bin/afs_compile_et/compile_et which wasn't the desired result. Change-Id: Ie6af2d3fd9c5166dd2d884c22d287c180b24fab1 Reviewed-on: http://gerrit.openafs.org/1099 Reviewed-by: Derrick Brashear Tested-by: Derrick Brashear --- src/comerr/Makefile.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/comerr/Makefile.in b/src/comerr/Makefile.in index 4102de137..35b8715df 100644 --- a/src/comerr/Makefile.in +++ b/src/comerr/Makefile.in @@ -31,7 +31,7 @@ libcom_err.a: error_msg.o et_name.o com_err.o AFS_component_version_number.o install: ${DESTDIR}${bindir}/afs_compile_et ${DESTDIR}${includedir}/afs/com_err.h ${DESTDIR}${includedir}/afs/error_table.h ${DESTDIR}${includedir}/afs/mit-sipb-cr.h ${DESTDIR}${libdir}/afs/libcom_err.a ${DEST}/bin/afs_compile_et: compile_et - ${INSTALL} $? $@ + ${INSTALL} -f $? $@ ${DEST}/include/afs/com_err.h: com_err.h ${INSTALL} $? $@ -- 2.39.5