You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@openoffice.apache.org by ks...@apache.org on 2016/06/21 21:23:37 UTC

svn commit: r1749607 - /openoffice/trunk/main/bootstrap.1

Author: kschenk
Date: Tue Jun 21 21:23:37 2016
New Revision: 1749607

URL: http://svn.apache.org/viewvc?rev=1749607&view=rev
Log:
Output Perl @INC, library locations, to help troubleshoot missing Perl modules.


Modified:
    openoffice/trunk/main/bootstrap.1

Modified: openoffice/trunk/main/bootstrap.1
URL: http://svn.apache.org/viewvc/openoffice/trunk/main/bootstrap.1?rev=1749607&r1=1749606&r2=1749607&view=diff
==============================================================================
--- openoffice/trunk/main/bootstrap.1 (original)
+++ openoffice/trunk/main/bootstrap.1 Tue Jun 21 21:23:37 2016
@@ -39,6 +39,8 @@ chmod +x "$SRC_ROOT/solenv/bin/gccinstli
 
 # fetch or update external tarballs
 if [ "$DO_FETCH_TARBALLS" = "yes" ]; then
+# check perl include locations
+    "$PERL" -e 'print "\nInclude locations: @INC\n\n"';
     "$PERL" "$SOLARENV/bin/download_external_dependencies.pl" $SRC_ROOT/external_deps.lst
     if [ "$?" != "0" ]; then
         echo "*** Error downloading external dependencies, please fix the previous problems and try again ***"