lkml.org 
[lkml]   [2015]   [Nov]   [20]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
Patch in this message
/
From
Subject[PATCH] scripts/package/buildtar: don't complain if lib/ is missing
Date
Building a tinyconfig kernel or similar stripped-down configurations
may not have a lib directory to tar up. Test for a lib directory to
avoid an unnecessary error message.

Signed-off-by: Jim Davis <jim.epost@gmail.com>
---
scripts/package/buildtar | 6 +++++-
1 file changed, 5 insertions(+), 1 deletion(-)

diff --git a/scripts/package/buildtar b/scripts/package/buildtar
index e046bff33589..b52475d2be3b 100755
--- a/scripts/package/buildtar
+++ b/scripts/package/buildtar
@@ -129,7 +129,11 @@ esac
if tar --owner=root --group=root --help >/dev/null 2>&1; then
opts="--owner=root --group=root"
fi
- tar cf - -C "$tmpdir" boot/ lib/ $opts | ${compress} > "${tarball}${file_ext}"
+ lib=
+ if test -d "$tmpdir/lib"; then
+ lib="lib/"
+ fi
+ tar cf - -C "$tmpdir" boot/ $lib $opts | ${compress} > "${tarball}${file_ext}"
)

echo "Tarball successfully created in ${tarball}${file_ext}"
--
2.6.2.195.g0c4dd78


\
 
 \ /
  Last update: 2015-11-21 01:01    [W:0.366 / U:0.016 seconds]
©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site