diff options
-rw-r--r-- | NEWS | 4 | ||||
-rw-r--r-- | configure.ac | 2 | ||||
-rwxr-xr-x | find-lang.pl | 1 |
3 files changed, 6 insertions, 1 deletions
@@ -1,3 +1,7 @@ +Version 1.168 - 17 March 2013, by Luc Menut +- fix find-lang.pl : do not own man lang directories with --with-man + (patch from Thierry Vignaud, mga #3697, #9055) + Version 1.167 - 20 Jan 2013, by Funda Wang - fix bug#8757, gi-find-deps.sh incorrectly match 'imports.github' diff --git a/configure.ac b/configure.ac index 75aa6b1..c6b518f 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.167, rtp@mageia.org) +AC_INIT(rpm-mageia-setup, 1.168, 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 3b622da..bb70618 100755 --- a/find-lang.pl +++ b/find-lang.pl @@ -73,6 +73,7 @@ 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' |