mirror of
https://git.openafs.org/openafs.git
synced 2025-01-21 00:10:15 +00:00
OpenBSD: Install no-NFS version of libafs
The build process for OpenBSD builds the no-NFS version of the kernel module but, at install time, the NFS version is subseuquently built and installed while the no-NFS version is ignored. The NFS version does not load and is not needed in OpenBSD so this patch makes sure that the no-NFS version is installed and used. Change-Id: I1d07334121911c22aea1f6d157f34e1b40e5b780 Reviewed-on: http://gerrit.openafs.org/3684 Reviewed-by: Andrew Deason <adeason@sinenomine.net> Tested-by: BuildBot <buildbot@rampaginggeek.com> Reviewed-by: Derrick Brashear <shadow@dementia.org>
This commit is contained in:
parent
9743a644ad
commit
6d8e3392b7
@ -83,13 +83,13 @@ DEST_LIBAFSNONFS = ${DEST}/root.client/bin/${LIBAFSNONFS}
|
||||
libafs: $(LIBAFSNONFS)
|
||||
ls -l libafs.o
|
||||
|
||||
install_libafs: $(LIBAFS)
|
||||
install_libafs: $(LIBAFSNONFS)
|
||||
${INSTALL} -d ${DESTDIR}${afskerneldir}
|
||||
${INSTALL} -m 644 $(LIBAFS) $(INST_LIBAFSNONFS)
|
||||
${INSTALL} -m 644 $(LIBAFSNONFS) $(INST_LIBAFSNONFS)
|
||||
|
||||
dest_libafs: $(LIBAFS)
|
||||
dest_libafs: $(LIBAFSNONFS)
|
||||
${INSTALL} -d ${DEST}/root.client/bin
|
||||
$(INSTALL) -m 644 $(LIBAFS) $(DEST_LIBAFSNONFS)
|
||||
$(INSTALL) -m 644 $(LIBAFSNONFS) $(DEST_LIBAFSNONFS)
|
||||
|
||||
${LIBAFS}: $(AFSAOBJS) $(AFSNFSOBJS)
|
||||
$(LD) -r -o ${LIBAFS} ${AFSAOBJS} ${AFSNFSOBJS}
|
||||
|
Loading…
Reference in New Issue
Block a user