aboutsummaryrefslogtreecommitdiffstats
path: root/scripts/package/mkspec
diff options
context:
space:
mode:
authorJohn Saalwaechter <saalwaechter@gmail.com>2010-01-31 16:18:58 -0800
committerMichal Marek <mmarek@suse.cz>2010-02-02 14:33:56 +0100
commit880df92fa0bb2ebaf057ea1cc1e309b351fd73bc (patch)
treeeda50d2507a785a48dfdf193ec73ddd00e9fa2d1 /scripts/package/mkspec
parentmarkup_oops.pl: fix for faulting instruction in the first line of a range (diff)
downloadlinux-dev-880df92fa0bb2ebaf057ea1cc1e309b351fd73bc.tar.xz
linux-dev-880df92fa0bb2ebaf057ea1cc1e309b351fd73bc.zip
scripts: use %_tmppath in "make rpm-pkg"
The mkspec script hardcodes "/var/tmp" into the generated rpm spec file's BuildRoot. The user, however, may have a custom setting for %_tmppath, which should be used in BuildRoot. This patch changes mkspec's BuildRoot output to appropriately use %_tmppath. Signed-off-by: John Saalwaechter <saalwaechter@gmail.com> Signed-off-by: Michal Marek <mmarek@suse.cz>
Diffstat (limited to 'scripts/package/mkspec')
-rwxr-xr-xscripts/package/mkspec2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/package/mkspec b/scripts/package/mkspec
index 47bdd2f99b78..16ae0dd746e1 100755
--- a/scripts/package/mkspec
+++ b/scripts/package/mkspec
@@ -39,7 +39,7 @@ if ! $PREBUILT; then
echo "Source: kernel-$__KERNELRELEASE.tar.gz"
fi
-echo "BuildRoot: /var/tmp/%{name}-%{PACKAGE_VERSION}-root"
+echo "BuildRoot: %{_tmppath}/%{name}-%{PACKAGE_VERSION}-root"
echo "Provides: $PROVIDES"
echo "%define __spec_install_post /usr/lib/rpm/brp-compress || :"
echo "%define debug_package %{nil}"