From 9ceec7ba6d661864b0597f83aaf0aa44288bc6a7 Mon Sep 17 00:00:00 2001 From: "Andreas V. 'netrunner' Meier" Date: Wed, 5 Jan 2005 11:55:35 +0000 Subject: [PATCH] Andreas V. Meier: patch cpan-device-serialport not to fail during test [2005010414410610992] (https://www.rocklinux.net/submaster) git-svn-id: http://www.rocklinux.org/svn/rock-linux/trunk@5466 c5f82cb5-29bc-0310-9cd0-bff59a50e3bc --- package/import/cpan/cpan-device-serialport.diff | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 package/import/cpan/cpan-device-serialport.diff diff --git a/package/import/cpan/cpan-device-serialport.diff b/package/import/cpan/cpan-device-serialport.diff new file mode 100644 index 000000000..3677a5964 --- /dev/null +++ b/package/import/cpan/cpan-device-serialport.diff @@ -0,0 +1,17 @@ +diff -ruN Device-SerialPort-1.002/Makefile.PL Device-SerialPort-1.002-new/Makefile.PL +--- Device-SerialPort-1.002/Makefile.PL 2004-04-06 18:14:42.000000000 +0200 ++++ Device-SerialPort-1.002-new/Makefile.PL 2005-01-04 10:49:38.003585616 +0100 +@@ -83,9 +83,11 @@ + } + + if (!defined($file)) { +- die "Could not find a serial port to use for testing.\n". ++ warn "Could not find a serial port to use for testing.\n". + "Please specify one on the 'perl Makefile.PL' command line, like so:\n". +- "\tperl Makefile.PL /dev/ttyS0\n"; ++ "\tperl Makefile.PL /dev/ttyS0\n". ++ "ROCKLinux will now set the file to test to /dev/null\n"; ++ $file = "/dev/null"; + } + + my $dfile = "t/DefaultPort.pm";