diff options
author | Cem Keylan <cem@ckyln.com> | 2020-05-29 22:17:03 +0300 |
---|---|---|
committer | Cem Keylan <cem@ckyln.com> | 2020-05-29 22:17:03 +0300 |
commit | b4c73dae057e9d688f258eb353810434f7d64365 (patch) | |
tree | c3eec207f6a4b27490a239f396bbe74403fc5557 /i686/musl/build | |
parent | 19a1d3f75ead4a3bdcbc14b2872ecb230499108a (diff) | |
download | repository-b4c73dae057e9d688f258eb353810434f7d64365.tar.gz |
musl: drop from i686 as it is merged to core
Diffstat (limited to 'i686/musl/build')
-rwxr-xr-x | i686/musl/build | 24 |
1 files changed, 0 insertions, 24 deletions
diff --git a/i686/musl/build b/i686/musl/build deleted file mode 100755 index 0549bc5f..00000000 --- a/i686/musl/build +++ /dev/null @@ -1,24 +0,0 @@ -#!/bin/sh -e - -./configure \ - --prefix=/usr \ - --syslibdir=/usr/lib - -make -make DESTDIR="$1" install - -mkdir -p "$1/usr/bin" -ln -s libc.so "$1/usr/lib/libc.musl-x86.so" -ln -s /usr/lib/ld-musl-i386.so.1 "$1/usr/bin/ldd" - -# Install BSD compatibility headers. -install -Dm 755 cdefs.h "$1/usr/include/sys/cdefs.h" -install -Dm 755 queue.h "$1/usr/include/sys/queue.h" -install -Dm 755 tree.h "$1/usr/include/sys/tree.h" - -# Install getconf. -"${CC:-cc}" getconf.c -o "$1/usr/bin/getconf" - -# Install libssp_nonshared.a -"${CC:-cc}" -c __stack_chk_fail_local.c -o __stack_chk_fail_local.o -ar r "$1/usr/lib/libssp_nonshared.a" __stack_chk_fail_local.o |