From 1a474ac28719c1b2187435de117a87c8dcca8bd9 Mon Sep 17 00:00:00 2001 From: Simon Wilkinson Date: Wed, 9 Feb 2011 19:37:18 +0000 Subject: [PATCH] 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 --- src/util/Makefile.in | 1 + 1 file changed, 1 insertion(+) 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} $? $@ -- 2.39.5