packaging: fix bashism in dist-snapshot target
On Debian and its derivatives, /bin/sh is a lightweight POSIX shell
(currently dash) which does not support the bash {foo,bar} syntax.
Signed-off-by: Simon McVittie <smcv@debian.org>
Closes: #226
Approved by: cgwalters
This commit is contained in:
parent
b1e1e51660
commit
45a6c109d9
|
|
@ -22,7 +22,7 @@ dist-snapshot:
|
||||||
tar -A -f $${TARFILE_TMP} submodule.tar; \
|
tar -A -f $${TARFILE_TMP} submodule.tar; \
|
||||||
rm submodule.tar; \
|
rm submodule.tar; \
|
||||||
done; \
|
done; \
|
||||||
mv $(PKG_VER).tar{.tmp,}; \
|
mv $(PKG_VER).tar.tmp $(PKG_VER).tar; \
|
||||||
rm -f $(PKG_VER).tar.xz; \
|
rm -f $(PKG_VER).tar.xz; \
|
||||||
xz $(PKG_VER).tar
|
xz $(PKG_VER).tar
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue