mirror of
https://github.com/PCSX2/pcsx2-sourceforge.git
synced 2026-02-04 19:31:17 +01:00
14 lines
183 B
Bash
14 lines
183 B
Bash
#!/bin/sh
|
|
|
|
echo ------------------------
|
|
echo Building DEV9 plugins...
|
|
echo ------------------------
|
|
curdir=`pwd`
|
|
|
|
cd ${curdir}/dev9null
|
|
sh build.sh $@
|
|
|
|
if [ $? -ne 0 ]
|
|
then
|
|
exit 1
|
|
fi |