From: Derrick Brashear Date: Mon, 24 Jun 2002 18:34:02 +0000 (+0000) Subject: linux-dont-install-osi-vfs-h-when-no-kernel-module-20020611 X-Git-Tag: openafs-devel_1_3_3~88 X-Git-Url: https://git.michaelhowe.org/gitweb/?a=commitdiff_plain;h=de06f45787658ff47d959d782a57e498598c1a4f;p=packages%2Fo%2Fopenafs.git linux-dont-install-osi-vfs-h-when-no-kernel-module-20020611 do --disbale-kernel-mdoule build works ==================== This delta was composed from multiple commits as part of the CVS->Git migration. The checkin message with each commit was inconsistent. The following are the additional commit messages. ==================== the rest of the patch --- diff --git a/src/afs/Makefile.in b/src/afs/Makefile.in index 759a8eab9..d35e73264 100644 --- a/src/afs/Makefile.in +++ b/src/afs/Makefile.in @@ -60,7 +60,7 @@ install: ${DESTDIR}${includedir}/afs/afs.h ${DESTDIR}${includedir}/afs/osi_in esac case ${SYS_NAME} in \ *linux* ) \ - ${INSTALL} ${MKAFS_OSTYPE}/osi_vfs.h ${DESTDIR}${includedir}/afs ;;\ + ${INSTALL} ${MKAFS_OSTYPE}/osi_vfs.h ${DESTDIR}${includedir}/afs || true ;;\ * ) \ echo No vfs headers to install for ${SYS_NAME};; \ esac @@ -136,7 +136,7 @@ dest: ${DEST}/include/afs/afs.h ${DEST}/include/afs/osi_inode.h ${DEST}/includ esac case ${SYS_NAME} in \ *linux* ) \ - ${INSTALL} ${MKAFS_OSTYPE}/osi_vfs.h ${DEST}/include/afs ;;\ + ${INSTALL} ${MKAFS_OSTYPE}/osi_vfs.h ${DEST}/include/afs || true;;\ * ) \ echo No vfs headers to install for ${SYS_NAME};; \ esac