diff options
author | John Saalwaechter <saalwaechter@gmail.com> | 2010-01-31 16:18:58 -0800 |
---|---|---|
committer | Michal Marek <mmarek@suse.cz> | 2010-02-02 14:33:56 +0100 |
commit | 880df92fa0bb2ebaf057ea1cc1e309b351fd73bc (patch) | |
tree | eda50d2507a785a48dfdf193ec73ddd00e9fa2d1 /scripts | |
parent | 0139f1d9539395ca341e17060ae26f44f5f31434 (diff) | |
download | op-kernel-dev-880df92fa0bb2ebaf057ea1cc1e309b351fd73bc.zip op-kernel-dev-880df92fa0bb2ebaf057ea1cc1e309b351fd73bc.tar.gz |
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')
-rwxr-xr-x | scripts/package/mkspec | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/package/mkspec b/scripts/package/mkspec index 47bdd2f..16ae0dd 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}" |