Modify eu-strip option to perform strip in post script of rpm package & add option...
[platform/upstream/rpm.git] / scripts / check-buildroot
1 #! /bin/sh
2
3 # Copyright (C) 2004 Enrico Scholz <enrico.scholz@informatik.tu-chemnitz.de>
4 #  
5 # This program is free software; you can redistribute it and/or modify
6 # it under the terms of the GNU General Public License as published by
7 # the Free Software Foundation; version 2 of the License.
8 #  
9 # This program is distributed in the hope that it will be useful,
10 # but WITHOUT ANY WARRANTY; without even the implied warranty of
11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12 # GNU General Public License for more details.
13 #  
14 # You should have received a copy of the GNU General Public License
15 # along with this program; if not, write to the Free Software
16 # Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
17
18
19 test -z "$QA_SKIP_BUILD_ROOT" || exit 0
20
21 if [ -z "$RPM_BUILD_ROOT" -o "$RPM_BUILD_ROOT" = "/" ]; then
22         exit 0
23 fi
24
25 tmp=$(mktemp ${TMPDIR:-/tmp}/cbr.XXXXXX)
26 trap "rm -f $tmp" EXIT
27
28 find "$RPM_BUILD_ROOT" \! \( \
29     -name '*.pyo' -o -name '*.pyc' -o -name '*.elc' -o -name '.packlist' \
30     \) -type f -print0 | \
31     LANG=C xargs -0r grep -F "$RPM_BUILD_ROOT" >$tmp
32
33 test -s "$tmp" && {
34     cat "$tmp"
35     echo "Found '$RPM_BUILD_ROOT' in installed files; aborting"
36     exit 1
37 } || :