This is an automated email from the git hooks/post-receive script. x2go pushed a commit to branch master in repository pale-moon. commit b8413b000450dc76bc0ab5326209faaef2b1b2e2 Author: Mihai Moldovan <ionic@ionic.de> Date: Sat Jun 30 04:56:51 2018 +0200 debian/rules: replace mkdir with install -d -m 755. --- debian/changelog | 1 + debian/rules | 6 +++--- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/debian/changelog b/debian/changelog index 028dd81..ee52fd0 100644 --- a/debian/changelog +++ b/debian/changelog @@ -49,6 +49,7 @@ palemoon (27.9.2~repack-1-0x2go1) UNRELEASED; urgency=medium - Add another hack, but commented out. - Remove old dh_auto_install override section. - Add license doc staging for MPL-1.1 and MPL-2.0. + - Replace mkdir with install -d -m 755. * debian/mozconfig: - Remove autoconf flags that should better be handled by debian/rules. * debian/make.mk: diff --git a/debian/rules b/debian/rules index 7c08fe2..3517a78 100755 --- a/debian/rules +++ b/debian/rules @@ -201,13 +201,13 @@ endif # Palemoon-specific hacks. # Stage headers into $(LIB_DIR)-devel/include. - mkdir debian/tmp$(LIB_DIR)-devel/include + install -d -m 755 debian/tmp$(LIB_DIR)-devel/include mv debian/tmp/usr/include/palemoon debian/tmp$(LIB_DIR)-devel/include/ # Stage idl into $(LIB_DIR)-devel/share. - mkdir debian/tmp$(LIB_DIR)-devel/share + install -d -m 755 debian/tmp$(LIB_DIR)-devel/share mv debian/tmp/usr/share/idl debian/tmp$(LIB_DIR)-devel/share/ - + # remove vestigial duplicate file #rm -rf debian/tmp$(LIB_DIR)/palemoon-bin -- Alioth's /home/x2go-admin/maintenancescripts/git/hooks/post-receive-email on /srv/git/code.x2go.org/pale-moon.git