Skip to content

Commit ff1fa2d

Browse files
author
nixnodes
committed
nope nope nope
1 parent 86a17a0 commit ff1fa2d

File tree

1 file changed

+4
-7
lines changed

1 file changed

+4
-7
lines changed

Diff for: build_bins.sh

+4-7
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,6 @@ build()
1111
make clean || return 2
1212
./configure ${1} || return 2
1313
make -j2 LDFLAGS="${LDFLAGS} ${2}" || return 2
14-
for i in ${3}; do
15-
cp src/${i} ${OUT}/${i}${4} || return 2
16-
done
1714
[ "${INSTALL}" = "true" ] && {
1815
make install || return 2
1916
}
@@ -22,9 +19,9 @@ build()
2219

2320
rm -f "${OUT}"/*
2421

25-
build "--enable-precheck ${1}" "${3}" "glutil-precheck" || exit 2
26-
build "${1} ${2}" "${3}" "glutil" || exit 2
27-
build "--enable-gfind ${1}" "${3}" "gfind" || exit 2
28-
build "--enable-chroot-ownbin ${1} ${2}" "${3}" "glutil-chroot" || exit 2
22+
build "--enable-precheck ${1}" "${3}" || exit 2
23+
build "${1} ${2}" "${3}" || exit 2
24+
build "--enable-gfind ${1}" "${3}" || exit 2
25+
build "--enable-chroot-ownbin ${1} ${2}" "${3}" || exit 2
2926

3027
exit 0

0 commit comments

Comments
 (0)