diff options
author | Pascal Terjan <pterjan@mageia.org> | 2011-05-30 12:00:13 +0000 |
---|---|---|
committer | Pascal Terjan <pterjan@mageia.org> | 2011-05-30 12:00:13 +0000 |
commit | ac6820baf548b5bc524dc3fa472d135b86808442 (patch) | |
tree | 236b7145a61845e29d82655ad504aec06656838b | |
parent | c7d328c35f0d3eb0bea296a8f5dfbb54576de81b (diff) | |
download | rpm-setup-ac6820baf548b5bc524dc3fa472d135b86808442.tar rpm-setup-ac6820baf548b5bc524dc3fa472d135b86808442.tar.gz rpm-setup-ac6820baf548b5bc524dc3fa472d135b86808442.tar.bz2 rpm-setup-ac6820baf548b5bc524dc3fa472d135b86808442.tar.xz rpm-setup-ac6820baf548b5bc524dc3fa472d135b86808442.zip |
Default to core, useful for local builds1.133
-rw-r--r-- | NEWS | 5 | ||||
-rw-r--r-- | build.macros.in | 3 | ||||
-rw-r--r-- | configure.ac | 2 |
3 files changed, 7 insertions, 3 deletions
@@ -1,4 +1,7 @@ -Version 1.132 - 19 May 2011, by Pascal Terjan +Version 1.133 - 30 May 2011, by Pascal Terjan +- default to core section + +Version 1.132 - 30 May 2011, by Pascal Terjan - do not append .%distro_section if section is core Version 1.131 - 19 May 2011, by Pascal Terjan diff --git a/build.macros.in b/build.macros.in index fe97b5f..7cf90a8 100644 --- a/build.macros.in +++ b/build.macros.in @@ -152,7 +152,8 @@ GCONF_CONFIG_SOURCE=`%{_gconftool_bin} --get-default-source` %{_gconftool_bin} - %distsuffix @DISTSUFFIX@ -%mkrel(c:) %{-c: 0.%{-c*}.}%{1}%{?subrel:.%subrel}%{?distsuffix:%distsuffix}%{?!distsuffix:.mga}%{?distro_release:%distro_release}%([ "%{distro_section}" != "core" ] && echo .%distro_section) +%__distro_section %{?distro_section:%distro_section}%{?!distro_section:core} +%mkrel(c:) %{-c: 0.%{-c*}.}%{1}%{?subrel:.%subrel}%{?distsuffix:%distsuffix}%{?!distsuffix:.mga}%{?distro_release:%distro_release}%([ "%{__distro_section}" != "core" ] && echo .%__distro_section) #------------------------------------------------------------------------------ # definions merged from manbo-setup-build diff --git a/configure.ac b/configure.ac index aa36632..c0295fb 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.132, pterjan@mageia.org) +AC_INIT(rpm-mageia-setup, 1.133, pterjan@mageia.org) AC_CANONICAL_TARGET AM_INIT_AUTOMAKE(1.9 -Wno-portability) AC_CONFIG_SRCDIR |