|
From: Paul F. <pa...@so...> - 2023-04-04 06:33:25
|
https://sourceware.org/git/gitweb.cgi?p=valgrind.git;h=1db98dbdb151e4cd6b5a59f9d91a08e356637e9f commit 1db98dbdb151e4cd6b5a59f9d91a08e356637e9f Author: Paul Floyd <pj...@wa...> Date: Tue Apr 4 08:32:36 2023 +0200 Callgrind: make scripts independent of perl installation path Diff: --- callgrind/callgrind_annotate.in | 2 +- callgrind/callgrind_control.in | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/callgrind/callgrind_annotate.in b/callgrind/callgrind_annotate.in index 16c0edf97c..c0715e0649 100644 --- a/callgrind/callgrind_annotate.in +++ b/callgrind/callgrind_annotate.in @@ -1,4 +1,4 @@ -#! /usr/bin/perl -w +#! /usr/bin/env -S perl -w ##--------------------------------------------------------------------## ##--- The cache simulation framework: instrumentation, recording ---## ##--- and results printing. ---## diff --git a/callgrind/callgrind_control.in b/callgrind/callgrind_control.in index 39e0a7f555..b8969373e4 100644 --- a/callgrind/callgrind_control.in +++ b/callgrind/callgrind_control.in @@ -1,4 +1,4 @@ -#! /usr/bin/perl -w +#! /usr/bin/env -S perl -w ##--------------------------------------------------------------------## ##--- Control supervision of applications run with callgrind ---## ##--- callgrind_control ---## |