~siretart/vlc/ubuntu

1 by Reinhard Tartler
Import upstream version 0.9.2
1
#! /bin/sh
2
rm -f .error$$
3
ERROR=0
4
export PATH=/usr/local/bin:/usr/bin:/bin:/usr/games LANG=C
5
(make $@ 2>&1 || touch .error$$)| \
6
`sed -ne "s/^top_srcdir *= *//p" < Makefile`/extras/buildsystem/make.pl
7
test -f .error$$ && ERROR=1
8
rm -f .error$$
9
exit $ERROR