Date: Wed, 27 Feb 2002 06:48:33 -0800 (PST) From: <olgeni@FreeBSD.org> To: gnome@FreeBSD.org Subject: gdm does not respect BATCH Message-ID: <200202271448.g1REmX915470@freefall.freebsd.org>
next in thread | raw e-mail | index | archive | help
... and hangs unless you define PACKAGE_BUILDING :) Index: pkg-install =================================================================== RCS file: /home/ncvs/ports/x11/gdm/pkg-install,v retrieving revision 1.4 diff -u -r1.4 pkg-install --- pkg-install 28 Jan 2002 17:50:11 -0000 1.4 +++ pkg-install 27 Feb 2002 14:46:48 -0000 @@ -37,4 +37,6 @@ exit 0 fi -/usr/bin/dialog --yesno "GDM may contain vulnerabilities leading local root compromise, and it is reported widely with various security sites and groups. It is not recommended that this port be installed in public environment. Do you wish to accept the security risk and build GDM anyway?" 10 60 || /usr/bin/false +if [ -z "${BATCH}" ]; then + /usr/bin/dialog --yesno "GDM may contain vulnerabilities leading local root compromise, and it is reported widely with various security sites and groups. It is not recommended that this port be installed in public environment. Do you wish to accept the security risk and build GDM anyway?" 10 60 || /usr/bin/false +fi -- jimmy To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-gnome" in the body of the message
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200202271448.g1REmX915470>