- changed bash specific syntax "xset >& /dev/null" to "xset > /dev/null 2>&1"
This commit is contained in:
parent
8263d15e76
commit
5fb5d18eda
@ -1,7 +1,7 @@
|
||||
#!/bin/sh
|
||||
#
|
||||
# install-x11-fonts
|
||||
# $Id: install-x11-fonts.in,v 1.6 2001-12-08 15:18:28 bdenney Exp $
|
||||
# $Id: install-x11-fonts.in,v 1.7 2002-03-18 10:26:30 cbothamy Exp $
|
||||
#
|
||||
# This is designed help people to get the Bochs fonts installed on their
|
||||
# system.
|
||||
@ -109,7 +109,7 @@ fi
|
||||
|
||||
# try to run xset
|
||||
echo Running xset fp rehash...
|
||||
xset >& /dev/null
|
||||
xset > /dev/null 2>&1
|
||||
XSET_STATUS=$?
|
||||
if test $? != 0; then
|
||||
echo WARNING: I could not find xset in your path. This step may not be
|
||||
|
Loading…
x
Reference in New Issue
Block a user