From: Russ Allbery Date: Sat, 28 Jun 2008 04:47:18 +0000 (-0700) Subject: Re-add upstream skip of PAM builds on amd64_linux24 X-Git-Tag: debian/1.4.7.dfsg1-3~25^2 X-Git-Url: https://git.michaelhowe.org/gitweb/?a=commitdiff_plain;h=b220f8f40752a6a8313f3c014d7d5dfe3a099063;p=packages%2Fo%2Fopenafs.git Re-add upstream skip of PAM builds on amd64_linux24 We always build the userspace code on amd64 as amd64_linux26, so this check is now harmless. Re-add the check to match upstream and reduce unnecessary differences. --- diff --git a/Makefile.in b/Makefile.in index 673a192d9..2ace1eb89 100644 --- a/Makefile.in +++ b/Makefile.in @@ -512,6 +512,8 @@ libafsauthent: ubik auth kauth libafsrpc # pthread based user space RX library shlibafsrpc: rx rxkad des case ${SYS_NAME} in \ + amd64_linux24) \ + echo Skipping shlibafsrpc for amd64_linux24 ;; \ alpha_dux*|sgi_*|sun4x_*|sunx86_*|rs_aix*|*linux*|hp_ux11*|ia64_hpux*) \ ${COMPILE_PART1} shlibafsrpc ${COMPILE_PART2} ;; \ *) \ @@ -520,6 +522,8 @@ shlibafsrpc: rx rxkad des shlibafsauthent: ubik auth kauth shlibafsrpc case ${SYS_NAME} in \ + amd64_linux24) \ + echo Skipping shlibafsauthent for amd64_linux24 ;; \ alpha_dux*|sgi_*|sun4x_*|sunx86_*|rs_aix*|*linux*|hp_ux11*|ia64_hpux*) \ ${COMPILE_PART1} shlibafsauthent ${COMPILE_PART2} ;; \ *) \