From e2502aa6f7e783f6100310d62b3d5318773d5341 Mon Sep 17 00:00:00 2001 From: Marc Fiuczynski Date: Wed, 12 Sep 2007 20:25:40 +0000 Subject: [PATCH] create a separate rpmbuild script that can be properly executed from sudo --- rpmbuild.sh | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 rpmbuild.sh 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 $@ -- 2.47.0