From 48d0341cdd41040714f1e9896efe89d49296bc78 Mon Sep 17 00:00:00 2001 From: Marko Myllynen Date: Thu, 7 Jan 2016 10:51:53 +0200 Subject: Make shebang interpreter directives consistent --- iconvdata/gen-8bit-gap-1.sh | 2 +- iconvdata/gen-8bit-gap.sh | 2 +- iconvdata/gen-8bit.sh | 2 +- iconvdata/run-iconv-test.sh | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) (limited to 'iconvdata') diff --git a/iconvdata/gen-8bit-gap-1.sh b/iconvdata/gen-8bit-gap-1.sh index e86ac53e89..46567f235f 100644 --- a/iconvdata/gen-8bit-gap-1.sh +++ b/iconvdata/gen-8bit-gap-1.sh @@ -1,4 +1,4 @@ -#! /bin/sh +#!/bin/sh echo "static const uint32_t iso88597_to_ucs4[96] = {" sed -ne '/^[^[:space:]]*[[:space:]]*.x00/d;/^END/q' \ -e 's/^[[:space:]]*.x\([A-Fa-f].\).*/ [0x\2 - 0xA0] = 0x\1,/p' \ diff --git a/iconvdata/gen-8bit-gap.sh b/iconvdata/gen-8bit-gap.sh index e1dabaebdb..bcd6d12ce1 100644 --- a/iconvdata/gen-8bit-gap.sh +++ b/iconvdata/gen-8bit-gap.sh @@ -1,4 +1,4 @@ -#! /bin/sh +#!/bin/sh echo "static const uint32_t to_ucs4[256] = {" sed -ne '/^[^[:space:]]*[[:space:]]*.x00/d;/^END/q' \ -e 's/^[[:space:]]*.x\(..\).*/ [0x\2] = 0x\1,/p' \ diff --git a/iconvdata/gen-8bit.sh b/iconvdata/gen-8bit.sh index d1a21bc03d..94de6fdd09 100644 --- a/iconvdata/gen-8bit.sh +++ b/iconvdata/gen-8bit.sh @@ -1,4 +1,4 @@ -#! /bin/sh +#!/bin/sh echo "static const uint32_t to_ucs4[256] = {" sed -ne '/^[^[:space:]]*[[:space:]]*.x00/d;/^END/q' \ -e 's/^[[:space:]]*.x\(..\).*/ [0x\2] = 0x\1,/p' \ diff --git a/iconvdata/run-iconv-test.sh b/iconvdata/run-iconv-test.sh index c18072668e..2e7105a2d9 100755 --- a/iconvdata/run-iconv-test.sh +++ b/iconvdata/run-iconv-test.sh @@ -1,4 +1,4 @@ -#! /bin/sh -f +#!/bin/sh -f # Run available iconv(1) tests. # Copyright (C) 1998-2016 Free Software Foundation, Inc. # This file is part of the GNU C Library. -- cgit v1.2.1