blob: 64d0e04d25f7fe492309b553ef1b9760c68e10ab (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
#!/bin/sh -e
# Build sometimes forces -Werror.
export CFLAGS="$CFLAGS -Wno-error"
# Disable configure error for missing argp, fts, and obstack.
sed -i -e 's/as_fn_error.*argp/: "/g' \
-e 's/as_fn_error.*fts/: "/g' \
-e 's/as_fn_error.*obstack/: "/g' configure
# Don't compile two unrelated C files which require argp.
sed -i 's/color.*printversion../#/g' lib/Makefile.in
./configure \
--prefix=/usr \
--disable-symbol-versioning \
--disable-debuginfod \
--disable-nls
# Skip the default make target and build only what we need.
make -C lib
make -C libelf
make -C libelf DESTDIR="$1" install
|