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:
1.1 KB
|
Line | |
---|
1 | #!/bin/bash
|
---|
2 |
|
---|
3 | # cross-lfs native findutils build
|
---|
4 | # --------------------------------
|
---|
5 | # $LastChangedBy$
|
---|
6 | # $LastChangedDate$
|
---|
7 | # $LastChangedRevision$
|
---|
8 | # $HeadURL$
|
---|
9 | #
|
---|
10 |
|
---|
11 | cd ${SRC}
|
---|
12 | LOG=findutils-native.log
|
---|
13 |
|
---|
14 | set_libdirname
|
---|
15 | setup_multiarch
|
---|
16 |
|
---|
17 | unpack_tarball findutils-${FINDUTILS_VER} &&
|
---|
18 | cd ${PKGDIR}
|
---|
19 | test 4.1 = "${FINDUTILS_VER}" &&
|
---|
20 | apply_patch findutils-${FINDUTILS_VER}
|
---|
21 |
|
---|
22 | # TODO: had to hack config.sub so it accepted powerpc64...
|
---|
23 | # come up with a check and a hack here...
|
---|
24 |
|
---|
25 | max_log_init Findutils ${FINDUTILS_VER} "native (shared)" ${CONFLOGS} ${LOG}
|
---|
26 | CC="${CC-gcc} ${ARCH_CFLAGS}" \
|
---|
27 | CFLAGS="-O2 -pipe ${TGT_CFLAGS}" \
|
---|
28 | ./configure --prefix=/usr \
|
---|
29 | --localstatedir=/var/lib/misc \
|
---|
30 | --libexecdir=/usr/${libdirname}/locate \
|
---|
31 | >> ${LOGFILE} 2>&1 &&
|
---|
32 | echo " o Configure OK" &&
|
---|
33 |
|
---|
34 | min_log_init ${BUILDLOGS} &&
|
---|
35 | make ${PMFLAGS} LDFLAGS="-s" \
|
---|
36 | >> ${LOGFILE} 2>&1 &&
|
---|
37 | echo " o Build OK" || barf
|
---|
38 |
|
---|
39 | min_log_init ${TESTLOGS} &&
|
---|
40 | make ${PMFLAGS} LDFLAGS="-s" \
|
---|
41 | >> ${LOGFILE} 2>&1 &&
|
---|
42 | echo " o Test OK" || errmsg
|
---|
43 |
|
---|
44 | min_log_init ${INSTLOGS} &&
|
---|
45 | make install \
|
---|
46 | >> ${LOGFILE} 2>&1 &&
|
---|
47 | echo " o install OK" || barf
|
---|
48 |
|
---|
Note:
See
TracBrowser
for help on using the repository browser.