diff options
-rwxr-xr-x | build | 6 |
1 files changed, 6 insertions, 0 deletions
@@ -16,6 +16,12 @@ install: build # Remove bcc and ELKS libc things for now. rm -Rf dest/usr/lib/bcc dest/usr/bin/bcc \ dest/usr/share/man/man1/bcc.1 dest/usr/share/man/man1/elks*.1 + # objdump86, size86, and nm86 are all the same binary. + set -e; \ + for prog in size86 nm86; do \ + rm "dest/usr/bin/$${prog}"; \ + ln -s objdump86 "dest/usr/bin/$${prog}"; \ + done oh-fixperms oh-strip oh-installfiles |