[Libreoffice-commits] .: 2 commits - bin/lo-commit-stat bin/lo-pack-sources
Petr Mladek
pmladek at kemper.freedesktop.org
Tue Jun 12 10:48:38 PDT 2012
bin/lo-commit-stat | 3 +++
bin/lo-pack-sources | 2 +-
2 files changed, 4 insertions(+), 1 deletion(-)
New commits:
commit 2e353b8daadc588b02fe7c7df5b7f185187e9d58
Author: Petr Mladek <pmladek at suse.cz>
Date: Tue Jun 12 19:46:42 2012 +0200
lo-commit-stat: avoid problems whit '%' in the commit message
Change-Id: Ia10bac649cc078f6ef39002d280dcff7e5d0b06d
diff --git a/bin/lo-commit-stat b/bin/lo-commit-stat
index 310548e..1a8e6bb 100755
--- a/bin/lo-commit-stat
+++ b/bin/lo-commit-stat
@@ -80,6 +80,9 @@ sub standardize_summary($)
my $first_char = lc($1);
$line =~ s/^./$first_char/;
}
+ # print does not like 0% or so
+ $line =~ s/%/%%/g;
+
# FIXME: remove do at the end of line
# remove bug numbers
commit b74119aed7f0e5761c70d9f800e1675832a717aa
Author: Petr Mladek <pmladek at suse.cz>
Date: Tue Jun 12 19:42:13 2012 +0200
lo-pack-sources: correct check for valid libreoffice/core dir
Change-Id: I8dbe60b85d0a330e3b2b5f54984b561fe9be05be
diff --git a/bin/lo-pack-sources b/bin/lo-pack-sources
index 11fcd74..7df4a0f 100755
--- a/bin/lo-pack-sources
+++ b/bin/lo-pack-sources
@@ -399,7 +399,7 @@ unless ( -d "$source_dir" ) {
}
# check if it is a valid libreoffice-core directory
-$is_lo_core_dir=1 if (-f "$source_dir/autogen.sh" && -f "$source_dir/set_soenv.in");
+$is_lo_core_dir=1 if (-f "$source_dir/autogen.sh" && -f "$source_dir/config_host.mk.in");
# all tarballs are generated from the libreoffice-core directory
if (@pieces > 1 && $is_lo_core_dir == 0 ) {
More information about the Libreoffice-commits
mailing list