Remove *~ files on make clean.
[autobuildrequires.git] / auto-br.sh.in
1 #!/bin/bash -
2 # @configure_input@
3 #
4 # Automatic generation of BuildRequires dependencies for rpmbuild.
5 # Copyright (C) 2008 Red Hat Inc.
6 # Written by Richard W.M. Jones <rjones@redhat.com>
7 #
8 # This program is free software; you can redistribute it and/or modify
9 # it under the terms of the GNU General Public License as published by
10 # the Free Software Foundation; either version 2 of the License, or
11 # (at your option) any later version.
12 #
13 # This program is distributed in the hope that it will be useful,
14 # but WITHOUT ANY WARRANTY; without even the implied warranty of
15 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16 # GNU General Public License for more details.
17 #
18 # You should have received a copy of the GNU General Public License
19 # along with this program; if not, write to the Free Software
20 # Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
21
22 prefix=@prefix@
23 exec_prefix=@exec_prefix@
24 libexecdir=@libexecdir@
25
26 logfile=$(pwd)/.$$.autobr.tmp
27 rm -f $logfile
28 touch $logfile
29
30 AUTO_BUILDREQUIRES_LOGFILE=$logfile
31 LD_PRELOAD=$libexecdir/auto-buildrequires-preload.so
32
33 export AUTO_BUILDREQUIRES_LOGFILE LD_PRELOAD
34 "$@"
35 status=$?
36 unset AUTO_BUILDREQUIRES_LOGFILE LD_PRELOAD
37
38 if [ $status -eq 0 ]; then
39     $libexecdir/auto-br-analyze.pl $logfile
40 fi
41
42 rm $logfile
43 exit $status