From ce7a01dc8050e9ba2aff406611c8bcd8984e464d Mon Sep 17 00:00:00 2001 From: giraffedata Date: Tue, 27 Mar 2012 04:32:15 +0000 Subject: Work around Perl bug with system(&>) git-svn-id: http://svn.code.sf.net/p/netpbm/code/trunk@1666 9d0c8265-081b-0410-96cb-a4ca84ce46f8 --- buildtools/configure.pl | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'buildtools') diff --git a/buildtools/configure.pl b/buildtools/configure.pl index 1b65bec8..fc0a23ce 100755 --- a/buildtools/configure.pl +++ b/buildtools/configure.pl @@ -1231,7 +1231,9 @@ sub getLinuxsvgaLibrary($@) { $default = '/usr/link/svgalib/libvga.so'; } elsif (-d('/usr/lib/svgalib')) { $default = '/usr/lib/svgalib/libvga.so'; - } elsif (system('ldconfig -p | grep libvga &>/dev/null') == 0) { + } elsif (system('ldconfig -p | grep libvga >/dev/null 2>&1') == 0) { + # &>/dev/null should work above, but on 12.03.26, it caused the + # return value of system() always to be zero! $default = 'libvga.so'; } elsif (-f('/usr/lib/libvga.a')) { $default = '/usr/lib/libvga.a'; @@ -2297,7 +2299,7 @@ if (!$flex_result) { # make rules for Thinkjettopbm for information on our experiences # with Lexes besides Flex. - my $systemRc = system('lex /dev/null'); + my $systemRc = system('lex /dev/null 2>&1'); if ($systemRc >> 8 == 127) { print("\n"); -- cgit 1.4.1