From: Simon Wilkinson Date: Wed, 9 Feb 2011 19:37:18 +0000 (+0000) Subject: util: Actually install thread_pool_types.h X-Git-Tag: upstream/1.8.0_pre1^2~4203 X-Git-Url: https://git.michaelhowe.org/gitweb/?a=commitdiff_plain;h=1a474ac28719c1b2187435de117a87c8dcca8bd9;p=packages%2Fo%2Fopenafs.git util: Actually install thread_pool_types.h The action portion of the rule for thread_pool_types.h was missing, so the file was never installed. As that file is a dependency for the whole of the util directory, it would result in util being completely rebuild with every make invocation. Add the missing installation rule, so we don't rebuild quite so often! Change-Id: Idb201c239b6b37a25567cf231059ef05536fc258 Reviewed-on: http://gerrit.openafs.org/3921 Tested-by: BuildBot Reviewed-by: Derrick Brashear --- diff --git a/src/util/Makefile.in b/src/util/Makefile.in index 00f8badfa..0ff14e2f3 100644 --- a/src/util/Makefile.in +++ b/src/util/Makefile.in @@ -115,6 +115,7 @@ ${TOP_INCDIR}/afs/thread_pool.h: ${srcdir}/thread_pool.h ${INSTALL_DATA} $? $@ ${TOP_INCDIR}/afs/thread_pool_types.h: ${srcdir}/thread_pool_types.h + ${INSTALL_DATA} $? $@ ${TOP_INCDIR}/afs/tabular_output.h: ${srcdir}/tabular_output.h ${INSTALL_DATA} $? $@