diff options
author | David Kalnischkies <david@kalnischkies.de> | 2014-01-17 19:37:45 +0100 |
---|---|---|
committer | David Kalnischkies <david@kalnischkies.de> | 2014-01-17 19:37:45 +0100 |
commit | eb9dee9602941af8a62f619817f1956ce7363074 (patch) | |
tree | 46e464421cd41727166b1217cbf66057d9da2afe /test | |
parent | 039382803d4172d512789e507c1e9a2559a4f235 (diff) |
ensure the right permissions as dpkg-deb ensists
otherwise you get with pickier umasks errors like:
dpkg-deb: error: control directory has bad permissions 700 (must be
>=0755 and <=0775)
so we just force a 755 for the control directory and dpkg is happy.
Git-Dch: Ignore
Diffstat (limited to 'test')
-rw-r--r-- | test/integration/framework | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/test/integration/framework b/test/integration/framework index bbe77dcf8..15c51e6ef 100644 --- a/test/integration/framework +++ b/test/integration/framework @@ -432,6 +432,8 @@ Package: $NAME" >> ${BUILDDIR}/debian/control (cd ${BUILDDIR}; dpkg-gencontrol -DArchitecture=$arch) (cd ${BUILDDIR}/debian/tmp; md5sum $(find usr/ -type f) > DEBIAN/md5sums) local LOG="${BUILDDIR}/../${NAME}_${VERSION}_${arch}.dpkg-deb.log" + # ensure the right permissions as dpkg-deb ensists + chmod 755 ${BUILDDIR}/debian/tmp/DEBIAN if ! dpkg-deb --build ${BUILDDIR}/debian/tmp ${BUILDDIR}/.. >$LOG 2>&1; then cat $LOG false |