diff options
author | Jeroen van Meeuwen (Kolab Systems) <vanmeeuwen@kolabsys.com> | 2017-09-05 11:21:34 +0200 |
---|---|---|
committer | Jeroen van Meeuwen (Kolab Systems) <vanmeeuwen@kolabsys.com> | 2017-09-05 11:21:34 +0200 |
commit | 69cb07e0198a4ff7f5ac31fa1d0a98e2b5724685 (patch) | |
tree | f3b4681fac7199cfd37e7920539b9e8917ecd619 | |
parent | ab9e9dfa123dd3b7da2dab7706d48ddd44a14a12 (diff) | |
download | libcalendaring-69cb07e0198a4ff7f5ac31fa1d0a98e2b5724685.tar.gz |
Correct shebangs
-rwxr-xr-x | kabc/scripts/createisomap.pl | 2 | ||||
-rwxr-xr-x | kabc/scripts/makeaddressee | 2 | ||||
-rwxr-xr-x | kabc/vcardparser/checkvcard.pl | 2 | ||||
-rwxr-xr-x | kcalcore/tests/createtestcases.pl | 2 | ||||
-rwxr-xr-x | kcalcore/tests/runsingletestcase.pl | 2 | ||||
-rwxr-xr-x | kdecore/kconfig_compiler/checkkcfg.pl | 2 | ||||
-rwxr-xr-x | kmime/tests/gen_decode_map.pl | 2 |
7 files changed, 7 insertions, 7 deletions
diff --git a/kabc/scripts/createisomap.pl b/kabc/scripts/createisomap.pl index 2726e20..2186df4 100755 --- a/kabc/scripts/createisomap.pl +++ b/kabc/scripts/createisomap.pl @@ -1,4 +1,4 @@ -#!/usr/bin/perl +#!/bin/perl # # Create a translation table countryname->iso-code from the entry.desktop # files in kdebase/l10n/*/ diff --git a/kabc/scripts/makeaddressee b/kabc/scripts/makeaddressee index d8c8f5b..be64703 100755 --- a/kabc/scripts/makeaddressee +++ b/kabc/scripts/makeaddressee @@ -1,4 +1,4 @@ -#!/usr/bin/perl +#!/bin/perl use Cwd; use File::Basename; diff --git a/kabc/vcardparser/checkvcard.pl b/kabc/vcardparser/checkvcard.pl index 5965c89..47cc00a 100755 --- a/kabc/vcardparser/checkvcard.pl +++ b/kabc/vcardparser/checkvcard.pl @@ -1,4 +1,4 @@ -#!/usr/bin/perl +#!/bin/perl if ( @ARGV != 1 ) { print STDERR "Missing arg: filename\n"; diff --git a/kcalcore/tests/createtestcases.pl b/kcalcore/tests/createtestcases.pl index 487f415..b7a9b48 100755 --- a/kcalcore/tests/createtestcases.pl +++ b/kcalcore/tests/createtestcases.pl @@ -1,4 +1,4 @@ -#!/usr/bin/perl +#!/bin/perl # Written 2005 Reinhold Kainhofer <reinhold@kainhofer.com> # This file is put into the public domain, I claim no copyright on that code diff --git a/kcalcore/tests/runsingletestcase.pl b/kcalcore/tests/runsingletestcase.pl index 139d764..35e4e59 100755 --- a/kcalcore/tests/runsingletestcase.pl +++ b/kcalcore/tests/runsingletestcase.pl @@ -1,4 +1,4 @@ -#!/usr/bin/perl +#!/bin/perl # This file is part of the kcalcore library. # diff --git a/kdecore/kconfig_compiler/checkkcfg.pl b/kdecore/kconfig_compiler/checkkcfg.pl index 2eddbee..5c46a66 100755 --- a/kdecore/kconfig_compiler/checkkcfg.pl +++ b/kdecore/kconfig_compiler/checkkcfg.pl @@ -1,4 +1,4 @@ -#!/usr/bin/perl +#!/bin/perl if ( @ARGV != 1 ) { print STDERR "Missing arg: filename\n"; diff --git a/kmime/tests/gen_decode_map.pl b/kmime/tests/gen_decode_map.pl index 131aef1..3fef330 100755 --- a/kmime/tests/gen_decode_map.pl +++ b/kmime/tests/gen_decode_map.pl @@ -1,4 +1,4 @@ -#!/usr/bin/perl -w +#!/bin/perl -w use strict; |