This is an automated email from the ASF dual-hosted git repository.
jim pushed a commit to branch trunk
in repository https://gitbox.apache.org/repos/asf/openoffice.git
The following commit(s) were added to refs/heads/trunk by this push:
new 6dee92f FIX for https://bz.apache.org/ooo/show_bug.cgi?id=128403
6dee92f is described below
commit 6dee92fc114c8598a192b75a4a8146b6fcd238cd
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
---
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 70a9fc8..723fe29 100644
--- a/main/set_soenv.in
+++ b/main/set_soenv.in
@@ -2219,8 +2219,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.