aboutsummaryrefslogtreecommitdiff
path: root/Makefile.pl
diff options
context:
space:
mode:
authorAndrey Ponomarenko <aponomarenko@rosalab.ru>2015-08-25 19:52:27 +0300
committerAndrey Ponomarenko <aponomarenko@rosalab.ru>2015-08-25 19:52:27 +0300
commit6fce0fa11412bd4f0f5e6d5ccf6cd42c4f4342c7 (patch)
treeeb8324d05292e91abdcae5412a65c408712db15f /Makefile.pl
parente5be1e88daab5b9c722e6970c480ec250bed6fbf (diff)
downloadabi-compliance-checker-6fce0fa11412bd4f0f5e6d5ccf6cd42c4f4342c7.tar.gz
Fixed cross-platform issues.
Diffstat (limited to 'Makefile.pl')
-rwxr-xr-xMakefile.pl2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile.pl b/Makefile.pl
index cec11a2..b3a5653 100755
--- a/Makefile.pl
+++ b/Makefile.pl
@@ -201,7 +201,7 @@ sub scenario()
print "-- Installing $TOOL_PATH\n";
mkpath($EXE_PATH);
writeFile($EXE_PATH."/".$TOOL_SNAME, $Content);
- chmod(0775, $EXE_PATH."/".$TOOL_SNAME);
+ chmod(0755, $EXE_PATH."/".$TOOL_SNAME);
if($Config{"osname"}=~/win/i) {
writeFile($EXE_PATH."/".$TOOL_SNAME.".cmd", "\@perl \"$TOOL_PATH\" \%*");