diff options
author | Jo-Philipp Wich <jow@openwrt.org> | 2015-10-26 15:28:05 +0000 |
---|---|---|
committer | Jo-Philipp Wich <jow@openwrt.org> | 2015-10-26 15:28:05 +0000 |
commit | 697df5459a4cef2b9b7ed5f511b121380b449d14 (patch) | |
tree | d0213648b03a9a4dcb8d5ac19f60d512eb13e49f /tools | |
parent | 2c0a35461ac450d3b5cc3a24a7e60f3eb52e1148 (diff) | |
download | master-187ad058-697df5459a4cef2b9b7ed5f511b121380b449d14.tar.gz master-187ad058-697df5459a4cef2b9b7ed5f511b121380b449d14.tar.bz2 master-187ad058-697df5459a4cef2b9b7ed5f511b121380b449d14.zip |
tools: quilt: fix perl interpreter line (#20802)
When using '/usr/bin/env' in a shebang it is not possible to specify
additional flags for the interpreter. Remove '-w' switches and add
'use warnings;' instead.
Signed-off-by: Jo-Philipp Wich <jow@openwrt.org>
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@47278 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'tools')
-rw-r--r-- | tools/quilt/patches/000-relocatable.patch | 60 |
1 files changed, 58 insertions, 2 deletions
diff --git a/tools/quilt/patches/000-relocatable.patch b/tools/quilt/patches/000-relocatable.patch index 9309fc426a..aedb914c29 100644 --- a/tools/quilt/patches/000-relocatable.patch +++ b/tools/quilt/patches/000-relocatable.patch @@ -28,7 +28,15 @@ export QUILTRC --- a/quilt/scripts/edmail.in +++ b/quilt/scripts/edmail.in -@@ -29,7 +29,7 @@ BEGIN { +@@ -1,4 +1,6 @@ +-#! @PERL@ -w ++#! @PERL@ ++ ++use warnings; + + # RFCs important for this script: + # +@@ -29,7 +31,7 @@ BEGIN { } setlocale(LC_MESSAGES, ""); @@ -69,7 +77,15 @@ : ${LC_MESSAGES:=$LANG} --- a/quilt/scripts/remove-trailing-ws.in +++ b/quilt/scripts/remove-trailing-ws.in -@@ -31,7 +31,7 @@ BEGIN { +@@ -1,4 +1,6 @@ +-#! @PERL@ -w ++#! @PERL@ ++ ++use warnings; + + # Remove trailing whitespace from modified lines in working files. + # +@@ -31,7 +33,7 @@ BEGIN { } setlocale(LC_MESSAGES, ""); @@ -127,3 +143,43 @@ . $QUILT_DIR/scripts/utilfns ensure_nolinks() +--- a/bin/guards.in ++++ b/bin/guards.in +@@ -1,4 +1,6 @@ +-#!@PERL@ -w ++#!@PERL@ ++ ++use warnings; + + # This script is free software; you can redistribute it and/or modify + # it under the terms of the GNU General Public License version 2 as +--- a/compat/date.in ++++ b/compat/date.in +@@ -1,4 +1,6 @@ +-#! @PERL@ -w ++#! @PERL@ ++ ++use warnings; + + # This script is free software; you can redistribute it and/or modify + # it under the terms of the GNU General Public License version 2 as +--- a/compat/getopt.in ++++ b/compat/getopt.in +@@ -1,4 +1,6 @@ +-#! @PERL@ -w ++#! @PERL@ ++ ++use warnings; + + # This script is free software; you can redistribute it and/or modify + # it under the terms of the GNU General Public License version 2 as +--- a/quilt/scripts/dependency-graph.in ++++ b/quilt/scripts/dependency-graph.in +@@ -1,4 +1,6 @@ +-#!@PERL@ -w ++#!@PERL@ ++ ++use warnings; + + # This script is free software; you can redistribute it and/or modify + # it under the terms of the GNU General Public License version 2 as |