aboutsummaryrefslogtreecommitdiffstats
path: root/strip_files
diff options
context:
space:
mode:
authorGuillaume Rousse <guillomovitch@mandriva.org>2008-01-29 21:34:54 +0000
committerGuillaume Rousse <guillomovitch@mandriva.org>2008-01-29 21:34:54 +0000
commit02e14506ac57f50b8fe77c79ae72be0403d52b2c (patch)
tree10ba2860acf8f4b7f38af9d22838f43ad358c0ec /strip_files
parent7d1cb2c537e76a8408355a62f38016ed3a8c2085 (diff)
downloadspec-helper-02e14506ac57f50b8fe77c79ae72be0403d52b2c.tar
spec-helper-02e14506ac57f50b8fe77c79ae72be0403d52b2c.tar.gz
spec-helper-02e14506ac57f50b8fe77c79ae72be0403d52b2c.tar.bz2
spec-helper-02e14506ac57f50b8fe77c79ae72be0403d52b2c.tar.xz
spec-helper-02e14506ac57f50b8fe77c79ae72be0403d52b2c.zip
sanitize usage and test of buildroot env var
Diffstat (limited to 'strip_files')
-rwxr-xr-xstrip_files8
1 files changed, 5 insertions, 3 deletions
diff --git a/strip_files b/strip_files
index b994362..03bd460 100755
--- a/strip_files
+++ b/strip_files
@@ -64,11 +64,13 @@ sub testfile() {
}
################################################################################
-my $RPM_BUILD_ROOT = $ENV{RPM_BUILD_ROOT};
-chdir($RPM_BUILD_ROOT) or die "Can't cd to $ENV{RPM_BUILD_ROOT}: $!";
+my $buildroot = $ENV{RPM_BUILD_ROOT};
+die "No build root defined" unless $buildroot;
+die "Invalid build root" unless -d $buildroot;
+chdir($buildroot) or die "Can't cd to $buildroot: $!";
@shared_libs = @executables = @static_libs = ();
-find(\&testfile, $RPM_BUILD_ROOT);
+find(\&testfile, $buildroot);
# Note that all calls to strip on shared libs *must* include the --strip-unneeded.
system("strip", "--remove-section=.comment", "--remove-section=.note", "--strip-unneeded",$_) foreach @shared_libs;