clfs-1.2
clfs-2.1
clfs-3.0.0-systemd
clfs-3.0.0-sysvinit
systemd
sysvinit
Last change
on this file since 4e71b7e 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:
1011 bytes
|
Rev | Line | |
---|
[617118d] | 1 | #!/bin/bash
|
---|
| 2 |
|
---|
| 3 | # cross-lfs target grep build
|
---|
| 4 | # ---------------------------
|
---|
| 5 | # $LastChangedBy$
|
---|
| 6 | # $LastChangedDate$
|
---|
| 7 | # $LastChangedRevision$
|
---|
| 8 | # $HeadURL$
|
---|
| 9 | #
|
---|
| 10 |
|
---|
| 11 | cd ${SRC}
|
---|
| 12 | LOG=grep-target.log
|
---|
| 13 |
|
---|
| 14 | unpack_tarball grep-${GREP_VER} &&
|
---|
| 15 | cd ${PKGDIR}
|
---|
| 16 |
|
---|
| 17 | set_libdirname
|
---|
| 18 | setup_multiarch
|
---|
| 19 |
|
---|
| 20 | if [ "${USE_SYSROOT}" = "Y" ]; then
|
---|
| 21 | BUILD_PREFIX=/usr
|
---|
| 22 | INSTALL_PREFIX="${LFS}${BUILD_PREFIX}"
|
---|
| 23 | INSTALL_OPTIONS="DESTDIR=${LFS}"
|
---|
| 24 | else
|
---|
| 25 | BUILD_PREFIX=${TGT_TOOLS}
|
---|
| 26 | INSTALL_PREFIX="${TGT_TOOLS}"
|
---|
| 27 | INSTALL_OPTIONS=""
|
---|
| 28 | fi
|
---|
| 29 |
|
---|
| 30 | max_log_init Grep ${GREP_VER} "target (shared)" ${CONFLOGS} ${LOG}
|
---|
| 31 | CC="${TARGET}-gcc ${ARCH_CFLAGS}" \
|
---|
| 32 | CFLAGS="-O2 -pipe ${TGT_CFLAGS}" \
|
---|
| 33 | ./configure --prefix=${BUILD_PREFIX} --host=${TARGET} \
|
---|
| 34 | --disable-perl-regexp --with-included-regex \
|
---|
| 35 | >> ${LOGFILE} 2>&1 &&
|
---|
| 36 | echo " o Configure OK" &&
|
---|
| 37 |
|
---|
| 38 | min_log_init ${BUILDLOGS} &&
|
---|
| 39 | make ${PMFLAGS} LDFLAGS="-s" \
|
---|
| 40 | >> ${LOGFILE} 2>&1 &&
|
---|
| 41 | echo " o Build OK" || barf
|
---|
| 42 |
|
---|
| 43 | min_log_init ${INSTLOGS} &&
|
---|
| 44 | make ${INSTALL_OPTIONS} install \
|
---|
| 45 | >> ${LOGFILE} 2>&1 &&
|
---|
| 46 | echo " o ALL OK" || barf
|
---|
| 47 |
|
---|
Note:
See
TracBrowser
for help on using the repository browser.