clfs-1.2
clfs-2.1
clfs-3.0.0-systemd
clfs-3.0.0-sysvinit
systemd
sysvinit
Last change
on this file since 60454e2 was 617118d, checked in by Jim Gifford <clfs@…>, 19 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 |
|
---|
5 | set_libdirname
|
---|
6 | setup_multiarch
|
---|
7 |
|
---|
8 | cd ${SRC}
|
---|
9 | LOG=nfs-utils-blfs.log
|
---|
10 |
|
---|
11 | unpack_tarball nfs-utils-${NFSUTILS_VER}
|
---|
12 | cd ${PKGDIR}
|
---|
13 |
|
---|
14 | # Unset TARGET env var, it b0rks things here...
|
---|
15 | unset TARGET
|
---|
16 |
|
---|
17 | max_log_init nfs-utils ${NFSUTILS_VER} "blfs (shared)" ${CONFLOGS} ${LOG}
|
---|
18 | CC="${CC-gcc} ${ARCH_CFLAGS}" \
|
---|
19 | CFLAGS="-O2 ${TGT_CFLAGS}" \
|
---|
20 | ./configure --prefix=/usr --sysconfdir=/etc \
|
---|
21 | --mandir=/usr/share/man --infodir=/usr/share/info \
|
---|
22 | >> ${LOGFILE} 2>&1 &&
|
---|
23 | echo " o Configure OK" || barf
|
---|
24 |
|
---|
25 | min_log_init ${BUILDLOGS} &&
|
---|
26 | env -i make \
|
---|
27 | >> ${LOGFILE} 2>&1 &&
|
---|
28 | echo " o Build OK" &&
|
---|
29 |
|
---|
30 | min_log_init ${INSTLOGS} &&
|
---|
31 | env -i make install \
|
---|
32 | >> ${LOGFILE} 2>&1 &&
|
---|
33 | echo " o Install OK" || barf
|
---|
34 |
|
---|
Note:
See
TracBrowser
for help on using the repository browser.