]> git.donarmstrong.com Git - deb_pkgs/autorandr.git/commitdiff
Merge pull request #73 from adbrucker/master
authorPhillip Berndt <phillip.berndt@googlemail.com>
Fri, 11 Aug 2017 06:52:21 +0000 (08:52 +0200)
committerGitHub <noreply@github.com>
Fri, 11 Aug 2017 06:52:21 +0000 (08:52 +0200)
Bug fix: ensure that the Debian control directory has permissions 0755.

contrib/packaging/debian/make_deb.sh

index f049a108fcd4c815fd0f20e93fbbf1df38598c81..fe8fe375f18b2ca8ee206cb5a527a45bf9636992 100755 (executable)
@@ -44,6 +44,7 @@ make -C "$P/../../../" \
 SIZE=$(du -s $D | awk '{print $1}')
 
 cp -r "$P/debian" "$D/DEBIAN"
+chmod 0755 "$D/DEBIAN"
 [ -d "$D/etc" ] && (cd $D; find etc -type f) > "$D/DEBIAN/conffiles"
 sed -i -re "s#Version:.+#Version: $V#" "$D/DEBIAN/control"
 echo "Installed-Size: $SIZE" >> "$D/DEBIAN/control"