From: Gustavo Niemeyer Date: Wed, 9 Feb 2011 04:50:23 +0000 (-0500) Subject: build: Drop syslog on DISABLE_NET_TESTS=1 X-Git-Tag: weekly.2011-02-15~58 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=13c95f452e9351cb1febb16df7bc302e9ddd36fb;p=gostls13.git build: Drop syslog on DISABLE_NET_TESTS=1 Even if local, it requires communication with a daemon which may not be available. This is creating problems for getting an Ubuntu package going in Launchpad's PPA. R=golang-dev, rsc CC=golang-dev https://golang.org/cl/3989062 --- diff --git a/src/pkg/Makefile b/src/pkg/Makefile index 2ca68f3e93..619167ca43 100644 --- a/src/pkg/Makefile +++ b/src/pkg/Makefile @@ -187,7 +187,7 @@ NOBENCH=\ # Disable tests that depend on an external network. ifeq ($(DISABLE_NET_TESTS),1) -NOTEST+=http net +NOTEST+=http net syslog endif # Disable tests that windows cannot run yet.