diff options
author | Petr Mladek <pmladek@suse.cz> | 2012-06-12 19:42:13 +0200 |
---|---|---|
committer | Petr Mladek <pmladek@suse.cz> | 2012-06-12 19:42:13 +0200 |
commit | b74119aed7f0e5761c70d9f800e1675832a717aa (patch) | |
tree | 47c4ace7ffbc755855b5ef2135d19e47fbe75ed1 /bin/lo-pack-sources | |
parent | b3d8fd8a41b2fd8070f64366273ca8eb20484b12 (diff) |
lo-pack-sources: correct check for valid libreoffice/core dir
Change-Id: I8dbe60b85d0a330e3b2b5f54984b561fe9be05be
Diffstat (limited to 'bin/lo-pack-sources')
-rwxr-xr-x | bin/lo-pack-sources | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/lo-pack-sources b/bin/lo-pack-sources index 11fcd7421d54..7df4a0f058d2 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 ) { |