blob: 06b5d2e9916bec051c34a119dd073917ab1b354a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
#!/bin/sh
set -e
# build the examples
echo "ADTTMP directory: $ADTTMP"
cd "$ADTTMP"
cp -r /usr/share/doc/ffmpeg/examples ./
cd examples
echo "building the examples..."
ret=0
make -k all 2>&1
ret=$?
echo "done!"
exit $ret
|