[Libreoffice-commits] .: bin/lo-pack-sources

Libreoffice Gerrit user logerrit at kemper.freedesktop.org
Tue Jan 22 09:00:28 PST 2013


 bin/lo-pack-sources |   10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)

New commits:
commit ffd2cc342f4ba54feeecbd3d31632131b45886ef
Author: Petr Mladek <pmladek at suse.cz>
Date:   Tue Jan 22 17:35:46 2013 +0100

    lo-pack-sources: run NOCONFIGURE=1 ./autogen.sh instead of autoreconf
    
    autogen.sh runs the needed tools with the right include paths
    
    Change-Id: Ia253b19566eeda31a1190a4fa7c543f7ffb63bfb

diff --git a/bin/lo-pack-sources b/bin/lo-pack-sources
index 5341af5..de6a4be 100755
--- a/bin/lo-pack-sources
+++ b/bin/lo-pack-sources
@@ -131,15 +131,15 @@ sub generate_lo_module_changelog($$$)
         die "Error: generating failed: $!\n";
 }
 
-sub run_autoreconf($$)
+sub run_autogen($$)
 {
     my ($dir, $module) = @_;
 
-    print "Running autoreconf for $module...\n";
+    print "Running autogen for $module...\n";
     system ("cd $dir && " .
-            "autoreconf -f -i && " .
+            "NOCONFIGURE=1 ./autogen.sh && " .
             "rm -rf autom4te.cache && " .
-            "cd - >/dev/null 2>&1") && die "Error: autoreconf failed: $!\n";
+            "cd - >/dev/null 2>&1") && die "Error: autogen failed: $!\n";
 }
 
 sub generate_sources_version_file($$)
@@ -266,7 +266,7 @@ sub prepare_module_sources($$$$)
     # prepare sources
     my $temp_dir = copy_lo_module_to_tempdir($source_dir, $module, $lo_topdir_name);
     generate_lo_module_changelog($source_dir, "$temp_dir/$lo_topdir_name", $module);
-    run_autoreconf("$temp_dir/$lo_topdir_name", $module) if ($module eq 'core');
+    run_autogen("$temp_dir/$lo_topdir_name", $module) if ($module eq 'core');
     generate_sources_version_file("$temp_dir/$lo_topdir_name", $release_version) if ($module eq 'core');
 
     return $temp_dir;


More information about the Libreoffice-commits mailing list