File: Fix-up-perl-path-in-installed-scripts.patch

package info (click to toggle)
libguestfs 1%3A1.54.1-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 98,892 kB
  • sloc: ansic: 379,443; ml: 38,771; sh: 10,329; java: 9,631; cs: 6,377; haskell: 5,729; makefile: 5,178; python: 3,821; perl: 2,467; erlang: 2,461; ruby: 349; xml: 275; pascal: 257; javascript: 157; cpp: 10
file content (29 lines) | stat: -rw-r--r-- 817 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
From: Hilko Bengen <bengen@debian.org>
Date: Sat, 28 Jul 2018 18:59:16 +0200
Subject: Fix up perl path in installed scripts

---
 perl/examples/create_disk.pl | 2 +-
 perl/examples/inspect_vm.pl  | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/perl/examples/create_disk.pl b/perl/examples/create_disk.pl
index 3b40683..3b69fab 100755
--- a/perl/examples/create_disk.pl
+++ b/perl/examples/create_disk.pl
@@ -1,4 +1,4 @@
-#!/usr/bin/env perl
+#!/usr/bin/perl
 
 # Example showing how to create a disk image.
 
diff --git a/perl/examples/inspect_vm.pl b/perl/examples/inspect_vm.pl
index 04fbae6..00679ec 100755
--- a/perl/examples/inspect_vm.pl
+++ b/perl/examples/inspect_vm.pl
@@ -1,4 +1,4 @@
-#!/usr/bin/env perl
+#!/usr/bin/perl
 
 # Example showing how to inspect a virtual machine disk.