From: Ben Kaduk Date: Wed, 13 Mar 2013 17:27:32 +0000 (-0400) Subject: Enable dvolser and tvolser for FreeBSD X-Git-Tag: upstream/1.8.0_pre1^2~1270 X-Git-Url: https://git.michaelhowe.org/gitweb/?a=commitdiff_plain;h=e93360ecc79822dd8149990a6eb5f3235b7cca1f;p=packages%2Fo%2Fopenafs.git Enable dvolser and tvolser for FreeBSD The top-level Makefile did not recurse into dvolser or tvolser for FreeBSD. They compile just fine, so enable them. Change-Id: Id85e3a72f53b85e6b155b224268e2fe587fe3406 Reviewed-on: http://gerrit.openafs.org/9598 Reviewed-by: Andrew Deason Reviewed-by: Derrick Brashear Tested-by: BuildBot --- diff --git a/Makefile.in b/Makefile.in index 44d914ac2..d9193756d 100644 --- a/Makefile.in +++ b/Makefile.in @@ -307,7 +307,7 @@ volser: cmd comerr usd kauth vlserver audit tvolser: project viced usd libafsrpc libafsauthent volser +@case ${SYS_NAME} in \ - *_darwin_*|alpha_dux*|sgi_*|sun*_5*|rs_aix*|*linux*|hp_ux11*|ia64_hpux*|*[no]bsd*) \ + *_darwin_*|alpha_dux*|sgi_*|sun*_5*|rs_aix*|*linux*|hp_ux11*|ia64_hpux*|*[nof]bsd*) \ ${COMPILE_PART1} tvolser ${COMPILE_PART2} ;; \ *) \ echo Not building MT volser for ${SYS_NAME} ;; \ @@ -315,7 +315,7 @@ tvolser: project viced usd libafsrpc libafsauthent volser dvolser: project viced usd libafsrpc libafsauthent volser +@case ${SYS_NAME} in \ - *_darwin_*|alpha_dux*|sgi_*|sun*_5*|rs_aix*|*linux*|hp_ux11*|ia64_hpux*|*[no]bsd*) \ + *_darwin_*|alpha_dux*|sgi_*|sun*_5*|rs_aix*|*linux*|hp_ux11*|ia64_hpux*|*[nof]bsd*) \ ${COMPILE_PART1} dvolser ${COMPILE_PART2} ;; \ *) \ echo Not building DAFS volser for ${SYS_NAME} ;; \