Ignore:
Timestamp:
2011-10-16T18:44:40+13:00 (13 years ago)
Author:
ak19
Message:

When launching the java command with 2>&1, still need the extra & at the end which was removed upon last commit: it is necessary on Linux CentOS, else launching GLI with the pdfbox extension fails with an inability to parse the plugins list.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • gs2-extensions/pdf-box/trunk/java/perllib/plugins/PDFBoxConverter.pm

    r24676 r24762  
    6767        # On Ubuntu, java >/dev/null 2>&1 works,
    6868        # but java 2>&1 >/dev/null doesn't work: output goes to screen anyway
    69         $cmd .= " >/dev/null 2>&1";
     69        $cmd .= " >/dev/null 2>&1 &"; # Need the & at the end for Linux Centos (Ubuntu is fine without it), else parsing plugins list fails
    7070        }
    7171
Note: See TracChangeset for help on using the changeset viewer.