From: Derrick Brashear Date: Wed, 10 Jul 2002 20:40:22 +0000 (+0000) Subject: STABLE12-linux-dont-install-osi-vfs-h-when-no-kernel-module-20020611 X-Git-Tag: openafs-stable-1_2_6~55 X-Git-Url: https://git.michaelhowe.org/gitweb/?a=commitdiff_plain;h=21b1a30c61a0f313e6f681bec8e9320175bf6df6;p=packages%2Fo%2Fopenafs.git STABLE12-linux-dont-install-osi-vfs-h-when-no-kernel-module-20020611 the rest of the patch (cherry picked from commit de06f45787658ff47d959d782a57e498598c1a4f) --- diff --git a/src/afs/Makefile.in b/src/afs/Makefile.in index 07e4239b0..3d534496e 100644 --- a/src/afs/Makefile.in +++ b/src/afs/Makefile.in @@ -76,7 +76,7 @@ install: ${DESTDIR}${includedir}/afs/afs.h ${DESTDIR}${includedir}/afs/osi_in esac case ${SYS_NAME} in \ *linux* ) \ - ${INSTALL} ${AFS_OSTYPE}/osi_vfs.h ${DESTDIR}${includedir}/afs ;;\ + ${INSTALL} ${AFS_OSTYPE}/osi_vfs.h ${DESTDIR}${includedir}/afs || true ;;\ * ) \ echo No vfs headers to install for ${SYS_NAME};; \ esac @@ -152,7 +152,7 @@ dest: ${DEST}/include/afs/afs.h ${DEST}/include/afs/osi_inode.h ${DEST}/includ esac case ${SYS_NAME} in \ *linux* ) \ - ${INSTALL} ${AFS_OSTYPE}/osi_vfs.h ${DEST}/include/afs ;;\ + ${INSTALL} ${AFS_OSTYPE}/osi_vfs.h ${DEST}/include/afs || true ;;\ * ) \ echo No vfs headers to install for ${SYS_NAME};; \ esac