Commit 9a3e3492 authored by Alessandro Portale's avatar Alessandro Portale
Browse files

qt5_tool: fix for perl v5.8.8


The perl version which comes with msysgit is v5.8.8. There, the
script fails with

   Undefined subroutine &Cwd::realpath called at
       qtrepotools/bin/qt5_tool line 600.

In this perl version Cwd's realpath apparently needs to be
explicitly exported.

Change-Id: I467c5879e3b67e14652054fc9df1ce9fd547aa14
Reviewed-by: default avatarFriedemann Kleint <Friedemann.Kleint@digia.com>
parent e2979966
No related merge requests found
Showing with 1 addition and 0 deletions
...@@ -27,6 +27,7 @@ use File::Copy; ...@@ -27,6 +27,7 @@ use File::Copy;
use POSIX; use POSIX;
use IO::File; use IO::File;
use File::Path; use File::Path;
use Cwd 'realpath';
my $CLEAN=0; my $CLEAN=0;
my $PULL=0; my $PULL=0;
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment