diff options
| author | Andrea Adami <andrea.adami@gmail.com> | 2014-07-22 20:02:08 +0200 |
|---|---|---|
| committer | Martin Jansa <Martin.Jansa@gmail.com> | 2014-07-24 15:32:55 +0200 |
| commit | 2f85f5a948df6163f975f37c84e4817468c9a5f9 (patch) | |
| tree | 10a59ec1843b44f4691400128b830b16e7993e79 /meta-initramfs/recipes-devtools/klibc/klibc-2.0.4/use-env-for-perl.patch | |
| parent | 1e1b6d19ef707a581e10b689a925d7b4ded76d2f (diff) | |
| download | meta-openembedded-2f85f5a948df6163f975f37c84e4817468c9a5f9.tar.gz | |
klibc: upgrade to released 2.0.4
Signed-off-by: Andrea Adami <andrea.adami@gmail.com>
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
Diffstat (limited to 'meta-initramfs/recipes-devtools/klibc/klibc-2.0.4/use-env-for-perl.patch')
| -rw-r--r-- | meta-initramfs/recipes-devtools/klibc/klibc-2.0.4/use-env-for-perl.patch | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/meta-initramfs/recipes-devtools/klibc/klibc-2.0.4/use-env-for-perl.patch b/meta-initramfs/recipes-devtools/klibc/klibc-2.0.4/use-env-for-perl.patch new file mode 100644 index 0000000000..eac128cc09 --- /dev/null +++ b/meta-initramfs/recipes-devtools/klibc/klibc-2.0.4/use-env-for-perl.patch | |||
| @@ -0,0 +1,25 @@ | |||
| 1 | Patch was imported from the OpenEmbedded git server | ||
| 2 | (git://git.openembedded.org/openembedded) | ||
| 3 | as of commit id 676cbb54d42c89a4832871064cfcb7ee2ad372ee | ||
| 4 | |||
| 5 | klcc-cross: Add patch to use /usr/bin/env perl | ||
| 6 | Certain configurations (such as autobuilders) may build in very | ||
| 7 | deep paths (that are longer than the #! mechanism allows) which | ||
| 8 | makes it unsafe to use the direct path for perl. In our case we know | ||
| 9 | that /usr/bin/env perl will always return ours (if it has been built). | ||
| 10 | |||
| 11 | Signed-off-by: Tom Rini <tom_rini@mentor.com> | ||
| 12 | |||
| 13 | Index: klibc-1.5.20/klcc/makeklcc.pl | ||
| 14 | =================================================================== | ||
| 15 | --- a/klcc/makeklcc.pl | ||
| 16 | +++ b/klcc/makeklcc.pl | ||
| 17 | @@ -26,7 +26,7 @@ sub pathsearch($) { | ||
| 18 | return undef; | ||
| 19 | } | ||
| 20 | |||
| 21 | -print "#!${perlpath}\n"; | ||
| 22 | +print "#!/usr/bin/env perl\n"; | ||
| 23 | |||
| 24 | open(KLIBCCONF, "< $klibcconf\0") | ||
| 25 | or die "$0: cannot open $klibcconf: $!\n"; | ||
