diff options
author | Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be> | 2012-11-28 06:09:17 +0000 |
---|---|---|
committer | Peter Korsgaard <jacmet@sunsite.dk> | 2012-11-30 12:16:52 -0800 |
commit | 74b9fa00efa16ec74f1d3df6137b9961fd60d3fc (patch) | |
tree | 5d3aa805477a7ac24a0d413fadc83c71c2a66c20 /package/perl/perl-make-ext.patch | |
parent | fd1b89f9c97660a8c0c5c2e7dedf9ef577ec3ac8 (diff) | |
download | buildroot-74b9fa00efa16ec74f1d3df6137b9961fd60d3fc.tar.gz buildroot-74b9fa00efa16ec74f1d3df6137b9961fd60d3fc.zip |
perl: remove redundant patches
Now we are using perlcross, the patches to make perl work with qemu are
redundant, so remove them.
Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
Diffstat (limited to 'package/perl/perl-make-ext.patch')
-rw-r--r-- | package/perl/perl-make-ext.patch | 24 |
1 files changed, 0 insertions, 24 deletions
diff --git a/package/perl/perl-make-ext.patch b/package/perl/perl-make-ext.patch deleted file mode 100644 index e0195e7a25..0000000000 --- a/package/perl/perl-make-ext.patch +++ /dev/null @@ -1,24 +0,0 @@ -Don't use RUN with make (only for perl) - -Signed-off-by: Francois Perrad <francois.perrad@gadz.org> - -Index: b/make_ext.pl -=================================================================== ---- a/make_ext.pl -+++ b/make_ext.pl -@@ -458,11 +458,13 @@ - # Give makefile an opportunity to rewrite itself. - # reassure users that life goes on... - my @args = ('config', @$pass_through); -- system(@run, @make, @args) and print "@run @make @args failed, continuing anyway...\n"; -+# system(@run, @make, @args) and print "@run @make @args failed, continuing anyway...\n"; -+ system(@make, @args) and print "@make @args failed, continuing anyway...\n"; - } - my @targ = ($target, @$pass_through); - print "Making $target in $ext_dir\n@run @make @targ\n"; -- my $code = system(@run, @make, @targ); -+# my $code = system(@run, @make, @targ); -+ my $code = system(@make, @targ); - die "Unsuccessful make($ext_dir): code=$code" if $code != 0; - - chdir $return_dir || die "Cannot cd to $return_dir: $!"; |