diff options
author | Cem Keylan <cem@ckyln.com> | 2021-01-12 15:52:10 +0300 |
---|---|---|
committer | Cem Keylan <cem@ckyln.com> | 2021-01-12 15:52:10 +0300 |
commit | 954902a8496d8cbddbd650c87bd5ff9f3e6c1deb (patch) | |
tree | 422b238103c824e6fef78bad072453776b356c4b /core/libelf/build | |
parent | 8bd7d55373db3480f909d0798dc512c81a7dec07 (diff) | |
download | repository-954902a8496d8cbddbd650c87bd5ff9f3e6c1deb.tar.gz |
libelf: move to extra
Diffstat (limited to 'core/libelf/build')
-rwxr-xr-x | core/libelf/build | 21 |
1 files changed, 0 insertions, 21 deletions
diff --git a/core/libelf/build b/core/libelf/build deleted file mode 100755 index 7bade69a..00000000 --- a/core/libelf/build +++ /dev/null @@ -1,21 +0,0 @@ -#!/bin/sh -e - -# Build sometimes forces -Werror. -export CFLAGS="$CFLAGS -Wno-error" - -# Disable configure error for missing argp. -sed -i 's/as_fn_error.*libargp/: "/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 |