diff options
author | Luc Menut <lmenut@mageia.org> | 2013-04-04 06:56:38 +0000 |
---|---|---|
committer | Luc Menut <lmenut@mageia.org> | 2013-04-04 06:56:38 +0000 |
commit | 631d4295cbaf1e48ebd2c06fa68f9068cbc9ad80 (patch) | |
tree | 2b28c067105ce502051bb8548588c208af9cf180 | |
parent | 88eb8d079104cf9de9875528455bfe11eac9a9c5 (diff) | |
download | rpm-setup-631d4295cbaf1e48ebd2c06fa68f9068cbc9ad80.tar rpm-setup-631d4295cbaf1e48ebd2c06fa68f9068cbc9ad80.tar.gz rpm-setup-631d4295cbaf1e48ebd2c06fa68f9068cbc9ad80.tar.bz2 rpm-setup-631d4295cbaf1e48ebd2c06fa68f9068cbc9ad80.tar.xz rpm-setup-631d4295cbaf1e48ebd2c06fa68f9068cbc9ad80.zip |
revert svn 7582 b/c it introduces a regression when --with-man1.170
is used in combination with another --with-xxxx: all the directories found by find-lang are skipped
-rw-r--r-- | NEWS | 5 | ||||
-rw-r--r-- | configure.ac | 2 | ||||
-rwxr-xr-x | find-lang.pl | 1 |
3 files changed, 6 insertions, 2 deletions
@@ -1,3 +1,8 @@ +Version 1.170 - 4 April 2013, by Luc Menut +- revert change 1.168 because it introduces a regression when --with-man + is used in combination with another --with-xxxx: all the directories + found by find-lang are skipped (not only man directories mga #3697c10) + Version 1.169 - 24 March 2013, by Colin Guthrie - add version macros for systemd/rpm-helper to ease distro upgrades diff --git a/configure.ac b/configure.ac index b35b66b..b40b637 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.169, rtp@mageia.org) +AC_INIT(rpm-mageia-setup, 1.170, rtp@mageia.org) AC_CANONICAL_TARGET AM_INIT_AUTOMAKE(1.9 -Wno-portability no-dist-gzip dist-xz) AC_CONFIG_SRCDIR diff --git a/find-lang.pl b/find-lang.pl index bb70618..3b622da 100755 --- a/find-lang.pl +++ b/find-lang.pl @@ -73,7 +73,6 @@ open(my $hlang, '>', "$pkgname.lang") or die "cannot open $pkgname.lang\n"; foreach my $f (sort keys %finallist) { my ($lang, @otherlang) = keys %{ $finallist{$f}{lang} || {} }; - next if $withman && !$allname && $finallist{$f}{dir}; my $l = sprintf("%s%s%s", $finallist{$f}{dir} ? '%dir ' : '', @otherlang == 0 && $lang && $lang ne 'C' |