source: scripts/target-scripts/target-sed.sh@ 60454e2

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 target procps build
4# -----------------------------
5# $LastChangedBy$
6# $LastChangedDate$
7# $LastChangedRevision$
8# $HeadURL$
9#
10
11cd ${SRC}
12LOG=sed-target.log
13
14unpack_tarball sed-${SED_VER} &&
15cd ${PKGDIR}
16
17set_libdirname
18setup_multiarch
19
20if [ "${USE_SYSROOT}" = "Y" ]; then
21 BUILD_PREFIX=/usr
22 INSTALL_PREFIX="${LFS}${BUILD_PREFIX}"
23 INSTALL_OPTIONS="DESTDIR=${LFS}"
24else
25 BUILD_PREFIX="${TGT_TOOLS}"
26 INSTALL_PREFIX="${TGT_TOOLS}"
27 INSTALL_OPTIONS=""
28fi
29
30case ${SED_VER} in
31 4.1 )
32 # when sed'ing in-place the target files permissions are changed
33 # this fixes this behaviour
34 apply_patch sed-4.1-permissions-1
35 ;;
36esac
37
38max_log_init Sed ${SED_VER} "target (shared)" ${CONFLOGS} ${LOG}
39CC="${TARGET}-gcc ${ARCH_CFLAGS}" \
40CFLAGS="-O2 -pipe ${TGT_CFLAGS}" \
41./configure --prefix=${BUILD_PREFIX} \
42 --host=${TARGET} \
43 >> ${LOGFILE} 2>&1 &&
44echo " o Configure OK" &&
45
46min_log_init ${BUILDLOGS} &&
47make ${PMFLAGS} LDFLAGS="-s" \
48 >> ${LOGFILE} 2>&1 &&
49echo " o Build OK" &&
50
51min_log_init ${INSTLOGS} &&
52make ${INSTALL_OPTIONS} install \
53 >> ${LOGFILE} 2>&1 &&
54echo " o ALL OK" || barf
55
Note: See TracBrowser for help on using the repository browser.