Ticket #5370: SwapOrderOfShellRedirection-dev_null-2_1.patch
File SwapOrderOfShellRedirection-dev_null-2_1.patch, 1.5 KB (added by , 15 years ago) |
---|
-
data/bin/which
1 1 #!/bin/bash 2 2 3 . /etc/profile 2>&1 > /dev/null3 . /etc/profile > /dev/null 2>&1 4 4 5 5 whence $* 6 6 -
data/bin/installoptionalpackage
279 279 local baseURL=http://dev.haiku-os.org/export/ 280 280 local revision=`uname -v | awk '{print $1}' | sed -e 's/r//'` 281 281 local url="${baseURL}${revision}/haiku/trunk/build/jam/${buildfile}" 282 wget -nv ${url} 2>&1 > /dev/null282 wget -nv ${url} > /dev/null 2>&1 283 283 fi 284 284 } 285 285 -
data/bin/install-wifi-firmwares.sh
301 301 302 302 # Build b43-fwcutter. 303 303 echo "Compiling b43-fwcutter for installing Broadcom's firmware ..." 304 make PREFIX=/boot/common CFLAGS="-I. -Wall -D_BSD_SOURCE" 2>&1 > /dev/null304 make PREFIX=/boot/common CFLAGS="-I. -Wall -D_BSD_SOURCE" > /dev/null 2>&1 305 305 if [ ! -e b43-fwcutter ] ; then 306 306 return 1 307 307 fi … … 323 323 324 324 # Cut firmware in pieces. 325 325 cd "$tempDir" 326 b43-fwcutter $file 2>&1 > /dev/null326 b43-fwcutter $file > /dev/null 2>&1 327 327 328 328 # Rename the pieces. 329 329 cd b43legacy