From: Kornel Benko Date: Thu, 15 Sep 2016 19:55:47 +0000 (+0200) Subject: Cmake tests: Use mkpath from module 'File::Path' to recursively X-Git-Tag: 2.3.0alpha1~1019 X-Git-Url: https://git.lyx.org/gitweb/?a=commitdiff_plain;h=9f1b80a2af08c25b31fa99ee1eebd24f1dff4bc1;p=features.git Cmake tests: Use mkpath from module 'File::Path' to recursively create the directory path. --- diff --git a/development/autotests/useSystemFonts.pl b/development/autotests/useSystemFonts.pl index f0183fa776..c68686b00a 100644 --- a/development/autotests/useSystemFonts.pl +++ b/development/autotests/useSystemFonts.pl @@ -152,7 +152,7 @@ elsif (0) { # set to '1' to enable setting of inputencoding my $sourcedir = dirname($source); my $destdir = dirname($dest); if (! -d $destdir) { - diestack("could not make dir \"$destdir\"") if (! mkdir $destdir); + diestack("could not make dir \"$destdir\"") if (! mkpath $destdir); } my $destdirOfSubdocuments;