diff options
author | Daniel Black <daniel@linux.ibm.com> | 2020-03-31 07:57:53 +1100 |
---|---|---|
committer | Anel <an3l@users.noreply.github.com> | 2020-06-23 03:24:46 +0200 |
commit | 37c88445e30d52c965bcb19b19fa710c3eb4fad9 (patch) | |
tree | b269fc6ab832c03a1bc9bdb8e1e0af9b6e293023 /scripts | |
parent | b1b9803cb800334962970a8783c782253021e964 (diff) | |
download | mariadb-git-37c88445e30d52c965bcb19b19fa710c3eb4fad9.tar.gz |
mtr: use env for perl
On FreeBSD, perl isn't in /usr/bin, its in /usr/local/bin or
elsewhere in the path.
Like storage/{maria/unittest/,}ma_test_* , we use /usr/bin/env to
find perl and run it.
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/convert-debug-for-diff.sh | 2 | ||||
-rw-r--r-- | scripts/mytop.sh | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/scripts/convert-debug-for-diff.sh b/scripts/convert-debug-for-diff.sh index 5b3ce05b815..60b328d946b 100755 --- a/scripts/convert-debug-for-diff.sh +++ b/scripts/convert-debug-for-diff.sh @@ -1,4 +1,4 @@ -#!/usr/bin/perl -i +#!/usr/bin/env perl -i # # This script converts all numbers that look like addresses or memory sizes, # in a debug files generated by --debug (like mysqld --debug-dbug), to #. diff --git a/scripts/mytop.sh b/scripts/mytop.sh index 3ef0a59f27f..e985d518c01 100644 --- a/scripts/mytop.sh +++ b/scripts/mytop.sh @@ -1,4 +1,4 @@ -#!/usr/bin/perl -w +#!/usr/bin/env perl -w # # $Id: mytop,v 1.91 2012/01/18 16:49:12 mgrennan Exp $ |