From 607d8c335e9a9711dc133dc9029d91b03f23e20f Mon Sep 17 00:00:00 2001 From: Muhammad Herdiansyah Date: Mon, 24 Jun 2019 10:36:39 +0700 Subject: [PATCH] bsdtar: reduce cd call Since the SOURCE "bsdtar" is relative, TARGET "$1/usr/bin/tar" will look for bsdtar in the same directory. Which should and does work. --- core/bsdtar/build | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/core/bsdtar/build b/core/bsdtar/build index 999a4580..2d1594b1 100755 --- a/core/bsdtar/build +++ b/core/bsdtar/build @@ -8,5 +8,4 @@ make make DESTDIR="$1" install -(cd "$1/usr/bin"; ln -s bsdtar "$1/usr/bin/tar") - +ln -s bsdtar "$1/usr/bin/tar"