From 5d4372401e605be5f29f754c7681535f9016f58d Mon Sep 17 00:00:00 2001 From: Dylan Araps Date: Sun, 23 Jun 2019 21:57:15 +0300 Subject: [PATCH] bsdtar: Install as tar as well. --- core/bsdtar/build | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/core/bsdtar/build b/core/bsdtar/build index 657e0c37..999a4580 100755 --- a/core/bsdtar/build +++ b/core/bsdtar/build @@ -1,9 +1,12 @@ #!/bin/sh -e ./configure \ - --prefix=/usr + --prefix=/usr \ + --without-xml2 \ + --disable-rpath make make DESTDIR="$1" install -ln -s "$1/usr/bin/bsdtar" "$1/usr/bin/tar" +(cd "$1/usr/bin"; ln -s bsdtar "$1/usr/bin/tar") +