source: scripts/native-scripts/native-findutils.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: 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
11cd ${SRC}
12LOG=findutils-native.log
13
14set_libdirname
15setup_multiarch
16
17unpack_tarball findutils-${FINDUTILS_VER} &&
18cd ${PKGDIR}
19test 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
25max_log_init Findutils ${FINDUTILS_VER} "native (shared)" ${CONFLOGS} ${LOG}
26CC="${CC-gcc} ${ARCH_CFLAGS}" \
27CFLAGS="-O2 -pipe ${TGT_CFLAGS}" \
28./configure --prefix=/usr \
29   --localstatedir=/var/lib/misc \
30   --libexecdir=/usr/${libdirname}/locate \
31   >> ${LOGFILE} 2>&1 &&
32echo " o Configure OK" &&
33
34min_log_init ${BUILDLOGS} &&
35make ${PMFLAGS} LDFLAGS="-s" \
36   >> ${LOGFILE} 2>&1 &&
37echo " o Build OK" || barf
38
39min_log_init ${TESTLOGS} &&
40make ${PMFLAGS} LDFLAGS="-s" \
41   >> ${LOGFILE} 2>&1 &&
42echo " o Test OK" || errmsg
43
44min_log_init ${INSTLOGS} &&
45make install \
46   >> ${LOGFILE} 2>&1 &&
47echo " o install OK" || barf
48
Note: See TracBrowser for help on using the repository browser.