diff options
author | Karl Berry <karl@freefriends.org> | 2006-12-25 23:18:57 +0000 |
---|---|---|
committer | Karl Berry <karl@freefriends.org> | 2006-12-25 23:18:57 +0000 |
commit | d9a9989973de064109f0aa3808304af3f7a5e42a (patch) | |
tree | 2b0c91cf737aeb6c0b807db1b04e262dd98aaf24 /Master/texmf/scripts/ps2eps | |
parent | 31e145961e52950b4fd8f70b5abcb96340b70fa0 (diff) |
NULLDEV reversed.
git-svn-id: svn://tug.org/texlive/trunk@2918 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/texmf/scripts/ps2eps')
-rw-r--r-- | Master/texmf/scripts/ps2eps/ps2eps.pl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Master/texmf/scripts/ps2eps/ps2eps.pl b/Master/texmf/scripts/ps2eps/ps2eps.pl index fababbe8d22..af12673a2db 100644 --- a/Master/texmf/scripts/ps2eps/ps2eps.pl +++ b/Master/texmf/scripts/ps2eps/ps2eps.pl @@ -48,12 +48,12 @@ $prgname= "ps2eps"; if (! -d "/usr/bin/") { $ghostscriptname = "gswin32c"; - $NULLDEV = "/dev/null"; + $NULLDEV = "nul"; } else { $ghostscriptname = "gs"; - $NULLDEV = "nul"; + $NULLDEV = "/dev/null"; } $bboxver=`bbox >$NULLDEV 2>&1 -V`; |