From: Marc Fiuczynski Date: Wed, 12 Sep 2007 20:25:40 +0000 (+0000) Subject: create a separate rpmbuild script that can be properly executed from sudo X-Git-Tag: 4.2-rc2~579 X-Git-Url: http://git.onelab.eu/?p=build.git;a=commitdiff_plain;h=e2502aa6f7e783f6100310d62b3d5318773d5341 create a separate rpmbuild script that can be properly executed from sudo --- diff --git a/rpmbuild.sh b/rpmbuild.sh new file mode 100644 index 00000000..08da09e0 --- /dev/null +++ b/rpmbuild.sh @@ -0,0 +1,14 @@ +#!/bin/bash + +# We require this hack to tell rpmbuild where to find the .rpmmacros +# file. And for whatever reason the $HOME variable used by the build +# system is not set correctly when invoking rpmbuild with sudo. This +# is hopefully just a temporary hack until we can either figure out +# what to do with sudo or pass rpmbuild an option that points it at a +# specific .rpmmacros file. + +# Be verbose +set -x + +export HOME=${PWD} +rpmbuild $@