diff options
author | Marko Myllynen <myllynen@redhat.com> | 2016-01-07 10:51:53 +0200 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2016-01-07 04:03:21 -0500 |
commit | 48d0341cdd41040714f1e9896efe89d49296bc78 (patch) | |
tree | b0b146fbd564e2700487e917a0e4ad5fcd787c2b /conform | |
parent | d7f914848b7d5e9b11bbffd1fecc4659d4acdc2d (diff) |
Make shebang interpreter directives consistent
Diffstat (limited to 'conform')
-rw-r--r-- | conform/GlibcConform.pm | 2 | ||||
-rwxr-xr-x | conform/check-header-lists.sh | 2 | ||||
-rw-r--r-- | conform/conformtest.pl | 2 | ||||
-rw-r--r-- | conform/linknamespace.pl | 2 | ||||
-rw-r--r-- | conform/list-header-symbols.pl | 2 |
5 files changed, 5 insertions, 5 deletions
diff --git a/conform/GlibcConform.pm b/conform/GlibcConform.pm index 3f4dc2061f..b83204384e 100644 --- a/conform/GlibcConform.pm +++ b/conform/GlibcConform.pm @@ -1,4 +1,4 @@ -#! /usr/bin/perl +#!/usr/bin/perl # Shared code for glibc conformance tests. diff --git a/conform/check-header-lists.sh b/conform/check-header-lists.sh index f6e76c6ade..849dfbcbce 100755 --- a/conform/check-header-lists.sh +++ b/conform/check-header-lists.sh @@ -1,4 +1,4 @@ -#! /bin/sh +#!/bin/sh # Check the set of headers with conformtest expectations for a given standard. # Copyright (C) 2014-2016 Free Software Foundation, Inc. # This file is part of the GNU C Library. diff --git a/conform/conformtest.pl b/conform/conformtest.pl index cc0944a889..fedcbc3f16 100644 --- a/conform/conformtest.pl +++ b/conform/conformtest.pl @@ -1,4 +1,4 @@ -#! /usr/bin/perl +#!/usr/bin/perl use GlibcConform; use Getopt::Long; diff --git a/conform/linknamespace.pl b/conform/linknamespace.pl index d6a18503a7..4b7b288165 100644 --- a/conform/linknamespace.pl +++ b/conform/linknamespace.pl @@ -1,4 +1,4 @@ -#! /usr/bin/perl +#!/usr/bin/perl # Check that use of symbols declared in a given header does not result # in any symbols being brought in that are not reserved with external diff --git a/conform/list-header-symbols.pl b/conform/list-header-symbols.pl index 2b012c7457..ab7ae57894 100644 --- a/conform/list-header-symbols.pl +++ b/conform/list-header-symbols.pl @@ -1,4 +1,4 @@ -#! /usr/bin/perl +#!/usr/bin/perl # Print a list of symbols exported by some headers that would # otherwise be in the user's namespace. |