This is an automated email from the ASF dual-hosted git repository.
jim pushed a commit to branch AOO42X
in repository https://gitbox.apache.org/repos/asf/openoffice.git
The following commit(s) were added to refs/heads/AOO42X by this push:
new 11e298e FIX for https://bz.apache.org/ooo/show_bug.cgi?id=128403
11e298e is described below
commit 11e298eca1e00752c6a010762580ba3dffbe873b
Author: Jim Jagielski <[email protected]>
AuthorDate: Tue Nov 24 15:17:51 2020 -0500
FIX for https://bz.apache.org/ooo/show_bug.cgi?id=128403
(cherry picked from commit 6dee92fc114c8598a192b75a4a8146b6fcd238cd)
---
main/set_soenv.in | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/main/set_soenv.in b/main/set_soenv.in
index 1ee19a0..9a845ba 100644
--- a/main/set_soenv.in
+++ b/main/set_soenv.in
@@ -2224,8 +2224,8 @@ print OUT "#!/bin/sh\n";
if ( $MINGW eq "yes" )
{ print OUT 'PATH="/usr/bin:$PATH" : export PATH'."\n"; }
close( OUT ) || print "Can't close $bootfile: $!";
-system(`cat bootstrap.1 >> bootstrap`);
-system(`chmod +x bootstrap`);
+system("cat bootstrap.1 >> bootstrap");
+system("chmod +x bootstrap");
#
#--------------------------------------------------------
# Moving the bootstrap file to the build home directory.