clfs-1.2
clfs-2.1
clfs-3.0.0-systemd
clfs-3.0.0-sysvinit
systemd
sysvinit
Last change
on this file since 57d97a5 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:
703 bytes
|
Line | |
---|
1 | #!/bin/bash
|
---|
2 | #
|
---|
3 | # ed
|
---|
4 | #
|
---|
5 | # Dependencies: None
|
---|
6 | #
|
---|
7 |
|
---|
8 | cd ${SRC}
|
---|
9 | LOG=blfs-ed.log
|
---|
10 |
|
---|
11 | set_libdirname
|
---|
12 | setup_multiarch
|
---|
13 |
|
---|
14 | unpack_tarball ed-${ED_VER} &&
|
---|
15 | cd ${PKGDIR}
|
---|
16 |
|
---|
17 | # Would normally put a case stmt around this, but hey, ed doesn't get
|
---|
18 | # updated too often ;-)
|
---|
19 | apply_patch ed-0.2-mkstemp-1
|
---|
20 |
|
---|
21 | max_log_init ed ${ED_VER} "blfs (shared)" ${CONFLOGS} ${LOG}
|
---|
22 | CC="${CC-gcc} ${ARCH_CFLAGS}" \
|
---|
23 | CFLAGS="${TGT_CFLAGS}" \
|
---|
24 | ./configure --prefix=/usr --build="${TARGET}" \
|
---|
25 | --exec-prefix="" \
|
---|
26 | >> ${LOGFILE} 2>&1 &&
|
---|
27 | echo " o Configure OK" &&
|
---|
28 |
|
---|
29 | min_log_init ${BUILDLOGS} &&
|
---|
30 | make ${PMFLAGS} \
|
---|
31 | >> ${LOGFILE} 2>&1 &&
|
---|
32 | echo " o Build OK" &&
|
---|
33 |
|
---|
34 | min_log_init ${INSTLOGS} &&
|
---|
35 | make install \
|
---|
36 | >> ${LOGFILE} 2>&1 &&
|
---|
37 | echo " o ALL OK" || barf
|
---|
38 |
|
---|
Note:
See
TracBrowser
for help on using the repository browser.