Package: zabbix Version: 1:1.4.2-2 Severity: serious Tags: patch Justification: Build depends on umask setting
When building zabbix with an umask of 077, chmod -x returns with an error code of one and make stop execution because of that. As far as i know there's no rule for developers to enforce a special umask, so the makefile shouldn't depend on it. -- System Information: Debian Release: 4.0 APT prefers stable APT policy: (500, 'stable') Architecture: i386 (i686) Shell: /bin/sh linked to /bin/bash Kernel: Linux 2.6.18-4-686 Locale: [EMAIL PROTECTED], [EMAIL PROTECTED] (charmap=ISO-8859-15)
--- debian/rules.orig 2007-09-20 21:12:23.000000000 +0200 +++ debian/rules 2007-09-20 21:12:33.000000000 +0200 @@ -139,7 +139,7 @@ # disable installation frontend for now. chmod 000 $(TMP_FRONTEND)/usr/share/zabbix/setup.php - chmod -x $(TMP_FRONTEND)/usr/share/zabbix/images/general/tick.png + chmod a-x $(TMP_FRONTEND)/usr/share/zabbix/images/general/tick.png # link config file to /etc/zabbix/.. dh_link -pzabbix-frontend-php etc/zabbix/dbconfig.php usr/share/zabbix/conf/zabbix.conf.php