From: Junio C Hamano Date: Sun, 31 Jan 2010 19:11:16 +0000 (-0800) Subject: RPM packaging: use %global inside %{!?...} X-Git-Tag: v1.7.0-rc2~31 X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=9f7a3c19dee2064b24b6b9fd5d6f6e770d4d539c;p=git.git RPM packaging: use %global inside %{!?...} According to https://www.redhat.com/archives/fedora-devel-list/2010-January/msg00093.html scope of %define lasts until the end brace; earlier RPM up to Fedora 12 didn't necessarily honor the scope, but later versions corrected the bug. Problem and solution both pointed out by Todd Zullinger. Signed-off-by: Junio C Hamano --- diff --git a/git.spec.in b/git.spec.in index 0a031088d..ee74a5eed 100644 --- a/git.spec.in +++ b/git.spec.in @@ -98,7 +98,7 @@ BuildRequires: perl(Error) Perl interface to Git %define path_settings ETC_GITCONFIG=/etc/gitconfig prefix=%{_prefix} mandir=%{_mandir} htmldir=%{_docdir}/%{name}-%{version} -%{!?python_sitelib: %define python_sitelib %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib()")} +%{!?python_sitelib: %global python_sitelib %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib()")} %prep %setup -q @@ -192,6 +192,9 @@ rm -rf $RPM_BUILD_ROOT # No files for you! %changelog +* Sun Jan 31 2010 Junio C Hamano +- Do not use %define inside %{!?...} construct. + * Sat Jan 30 2010 Junio C Hamano - We don't ship Python bits until a real foreign scm interface comes.