cleanup obso scripts
[build.git] / rpmbuild.sh
1 #!/bin/bash
2
3 # We require this hack to tell rpmbuild where to find the .rpmmacros
4 # file.  And for whatever reason the $HOME variable used by the build
5 # system is not set correctly when invoking rpmbuild with sudo.  This
6 # is hopefully just a temporary hack until we can either figure out
7 # what to do with sudo or pass rpmbuild an option that points it at a
8 # specific .rpmmacros file.
9
10 # Be verbose
11 set -x
12
13 export HOME=${PWD}
14 rpmbuild "$@"