diff options
author | Peter Korsgaard <jacmet@sunsite.dk> | 2012-12-02 17:19:40 -0800 |
---|---|---|
committer | Peter Korsgaard <jacmet@sunsite.dk> | 2012-12-02 17:19:40 -0800 |
commit | 8cdabd76950e227af088729c53c7f741a46bd9cc (patch) | |
tree | 86f11d84d46f9a5cc6be78b425b07bb58abb5d93 /package/perl/perl-configure-qemu.patch | |
parent | 677d5068b955cf713b73d285e41ec8eedbda8e38 (diff) | |
parent | c4fbc4202ea47829396bc446e84fd85153513974 (diff) | |
download | buildroot-novena-8cdabd76950e227af088729c53c7f741a46bd9cc.tar.gz buildroot-novena-8cdabd76950e227af088729c53c7f741a46bd9cc.zip |
Merge branch 'next'
Kickoff 2013.02 cycle
Diffstat (limited to 'package/perl/perl-configure-qemu.patch')
-rw-r--r-- | package/perl/perl-configure-qemu.patch | 53 |
1 files changed, 0 insertions, 53 deletions
diff --git a/package/perl/perl-configure-qemu.patch b/package/perl/perl-configure-qemu.patch deleted file mode 100644 index c2d6b9265..000000000 --- a/package/perl/perl-configure-qemu.patch +++ /dev/null @@ -1,53 +0,0 @@ -Add qemu support - -see https://rt.perl.org/rt3//Public/Bug/Display.html?id=114798 - -Signed-off-by: Francois Perrad <francois.perrad@gadz.org> - -Index: b/Configure -=================================================================== ---- a/Configure -+++ b/Configure -@@ -2837,6 +2837,9 @@ - ;; - *) echo "Using usrinc $usrinc." >&4 ;; - esac -+ case "$targetrun" in -+ *qemu*) targethost=dummy ;; -+ esac - case "$targethost" in - '') echo "Targethost not defined." >&4; croak=y ;; - *) echo "Using targethost $targethost." >&4 -@@ -2868,7 +2871,7 @@ - case "$targetfrom" in - '') targetfrom=scp ;; - esac -- run=$run-$targetrun -+ run=$run-`basename $targetrun` - to=$to-$targetto - from=$from-$targetfrom - case "$targetdir" in -@@ -2908,6 +2911,14 @@ - $targetrun -l $targetuser $targethost "cd \$cwd && ./\$exe \$@" - EOF - ;; -+ *qemu*) -+ to=: -+ from=: -+ cat >$run <<EOF -+#!/bin/sh -+$targetrun -L $qemulib "\$@" -+EOF -+ ;; - *) echo "Unknown targetrun '$targetrun'" >&4 - exit 1 - ;; -@@ -5048,7 +5059,7 @@ - echo " "; - echo "Checking if your compiler accepts $flag" 2>&1; - echo "int main(void) { return 0; }" > gcctest.c; --if $cc -O2 $flag -o gcctest gcctest.c 2>gcctest.out && ./gcctest; then -+if $cc -O2 $flag -o gcctest gcctest.c 2>gcctest.out && $run ./gcctest; then - echo "Yes, it does." 2>&1; - if $test -s gcctest.out ; then - echo "But your platform does not like it:"; |