diff options
author | Philippe Makowski <philippem@mageia.org> | 2013-09-25 22:23:15 +0200 |
---|---|---|
committer | Philippe Makowski <philippem@mageia.org> | 2013-09-25 22:23:15 +0200 |
commit | 13cbc25294142ac1a1eeb7419dabc702a212972d (patch) | |
tree | 0280899e3d55c67eb4d1401435ad8d3ca2b807ff | |
parent | 03ba0e258225997ca8e84e0ecc73080930d08472 (diff) | |
download | rpm-setup-13cbc25294142ac1a1eeb7419dabc702a212972d.tar rpm-setup-13cbc25294142ac1a1eeb7419dabc702a212972d.tar.gz rpm-setup-13cbc25294142ac1a1eeb7419dabc702a212972d.tar.bz2 rpm-setup-13cbc25294142ac1a1eeb7419dabc702a212972d.tar.xz rpm-setup-13cbc25294142ac1a1eeb7419dabc702a212972d.zip |
Set valid macros names for Python byte compilation1.189
-rw-r--r-- | NEWS | 3 | ||||
-rw-r--r-- | build.macros.in | 4 | ||||
-rw-r--r-- | configure.ac | 2 |
3 files changed, 6 insertions, 3 deletions
@@ -1,3 +1,6 @@ +Version 1.189 - 25 Sep 2013, by Philippe Makowski +- Set valid macros names for Python byte compilation + Version 1.188 - 25 Sep 2013, by Philippe Makowski - Improve macros for Python byte compilation diff --git a/build.macros.in b/build.macros.in index 6c5d720..d0e473a 100644 --- a/build.macros.in +++ b/build.macros.in @@ -305,8 +305,8 @@ export CFLAGS="%optflags"; export CXXFLAGS="%optflags"; export RPM_OPT_FLAGS="%o %__os_install_post \ %{?__spec_helper_post}%{?!__spec_helper_post:/usr/share/spec-helper/spec-helper} \ %{!?__jar_repack:/usr/lib/rpm/mageia/brp-java-repack-jars} \ - %{!?__brp-python-bytecompile:[ %{?_python_bytecompile_build} -eq 1 ] && /usr/lib/rpm/brp-python-bytecompile %{__python} %{?_python_bytecompile_errors_terminate_build}} \ - %{!?__brp-python-hardlink:/usr/lib/rpm/brp-python-hardlink} \ + %{!?__brp_python_bytecompile:[ %{?_python_bytecompile_build} -eq 1 ] && /usr/lib/rpm/brp-python-bytecompile %{__python} %{?_python_bytecompile_errors_terminate_build}} \ + %{!?__brp_python_hardlink:/usr/lib/rpm/brp-python-hardlink} \ %{nil} %__debug_install_post \ diff --git a/configure.ac b/configure.ac index 058cb32..cf393a8 100644 --- a/configure.ac +++ b/configure.ac @@ -4,7 +4,7 @@ # $Id: configure.ac 271266 2010-11-04 10:43:28Z fwang $ AC_PREREQ(2.59) -AC_INIT(rpm-mageia-setup, 1.188, philippem@mageia.org) +AC_INIT(rpm-mageia-setup, 1.189, philippem@mageia.org) AC_CANONICAL_TARGET AM_INIT_AUTOMAKE(1.9 -Wno-portability no-dist-gzip dist-xz) AC_CONFIG_SRCDIR |