1234567891011121314151617181920 |
- if [ ! -f gpsd.c ]; then
- echo "do-build: not at top-level of gpsd"
- exit 1
- fi
- version=`git describe`
- scons -c < /dev/null > /dev/null 2>&1
- scons $* < /dev/null > BUILD.$version 2>&1
- scons check < /dev/null > CHECK.$version 2>&1
|