scripts/package: don't break if %{_smp_mflags} isn't set

Currently, if we do a 'make rpm-pkg' without the _smp_mflags rpm macro
defined, the build fails with:

  [snip]
  Executing(%build): /bin/bash -e /var/tmp/rpm-tmp.67959
  + umask 022
  + cd /home/jk/devel/kernel-snapshot/rpm/BUILD
  + cd kernel-2.6.26
  + make clean
  + make '%{_smp_mflags}'
  make[3]: *** No rule to make target `%{_smp_mflags}'.  Stop.
  error: Bad exit status from /var/tmp/rpm-tmp.67959 (%build)

This change uses the 'null if not set' reference to the _smp_mflags
macro instead.

Signed-off-by: Jeremy Kerr <jk@ozlabs.org>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Sam Ravnborg <sam@ravnborg.org>
This commit is contained in:
Jeremy Kerr 2008-10-25 15:02:47 -07:00 committed by Sam Ravnborg
parent e3da2fb712
commit 13797b77d4
1 changed files with 1 additions and 1 deletions

View File

@ -57,7 +57,7 @@ fi
echo "%build"
if ! $PREBUILT; then
echo "make clean && make %{_smp_mflags}"
echo "make clean && make %{?_smp_mflags}"
echo ""
fi