1Fix build with gnutar-1.30
2
3Creating source archive...
4tar: The following options were used after any non-optional arguments in archive create or update mode. These options are positional and affect only arguments that follow them. Please, rearrange them properly.
5tar: --exclude 'debian/data' has no effect
6tar: Exiting with failure status due to previous errors
7diff --git a/build.sh b/build.sh
8index 0ea0403..725178c 100755
9--- a/build.sh
10+++ b/build.sh
11@@ -25,7 +25,7 @@ rm -rf out/ obj/ tmp/
12 mkdir -p out
13 if [ "$1" != "debian" ]; then
14 echo Creating source archive...
15- $tar --transform "s,^,quicktun-`cat version`/," -czf "out/quicktun-`cat version`.tgz" build.sh clean.sh debian src version --exclude "debian/data"
16+ $tar --transform "s,^,quicktun-`cat version`/," -czf "out/quicktun-`cat version`.tgz" --exclude "debian/data" build.sh clean.sh debian src version
17 fi
18
19 mkdir -p obj tmp tmp/include tmp/lib