source: scripts/blfs-scripts/blfs-nfs-utils.sh @ 617118d

clfs-1.2clfs-2.1clfs-3.0.0-systemdclfs-3.0.0-sysvinitsystemdsysvinit
Last change on this file since 617118d was 617118d, checked in by Jim Gifford <clfs@…>, 18 years ago

r561@server (orig r559): root | 2005-06-05 02:38:49 -0700
Fixed Directory Structure

  • Property mode set to 100755
File size: 705 bytes
Line 
1#!/bin/bash
2
3### nfs-utils ###
4
5set_libdirname
6setup_multiarch
7
8cd ${SRC}
9LOG=nfs-utils-blfs.log
10
11unpack_tarball nfs-utils-${NFSUTILS_VER}
12cd ${PKGDIR}
13
14# Unset TARGET env var, it b0rks things here...
15unset TARGET
16
17max_log_init nfs-utils ${NFSUTILS_VER} "blfs (shared)" ${CONFLOGS} ${LOG}
18CC="${CC-gcc} ${ARCH_CFLAGS}" \
19CFLAGS="-O2 ${TGT_CFLAGS}" \
20./configure --prefix=/usr --sysconfdir=/etc \
21   --mandir=/usr/share/man --infodir=/usr/share/info \
22   >> ${LOGFILE} 2>&1 &&
23echo " o Configure OK" || barf
24
25min_log_init ${BUILDLOGS} &&
26env -i make \
27   >> ${LOGFILE} 2>&1 &&
28echo " o Build OK" &&
29
30min_log_init ${INSTLOGS} &&
31env -i make install \
32   >> ${LOGFILE} 2>&1 &&
33echo " o Install OK" || barf
34
Note: See TracBrowser for help on using the repository browser.