diff options
author | 2003-12-18 06:19:22 +0000 | |
---|---|---|
committer | 2003-12-18 06:19:22 +0000 | |
commit | 171ec3b67e1f0dbbc09ca6cdcd92e1e8f9ec4349 (patch) | |
tree | a3df2c41d9478eb7aaea0e8179231d9532ecc63d /gnu/usr.bin/cvs/src | |
parent | cvs uses zlib, not gzip; remove a lie. OK deraadt@ (diff) | |
download | wireguard-openbsd-171ec3b67e1f0dbbc09ca6cdcd92e1e8f9ec4349.tar.xz wireguard-openbsd-171ec3b67e1f0dbbc09ca6cdcd92e1e8f9ec4349.zip |
Don't add -I$(srcdir)/zlib to CFLAGS since the version of zlib included with
cvs no longer matches ours. Fixes "compression initialization: error -6"
as noticed by espie@ and others.
Diffstat (limited to 'gnu/usr.bin/cvs/src')
-rw-r--r-- | gnu/usr.bin/cvs/src/Makefile.am | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gnu/usr.bin/cvs/src/Makefile.am b/gnu/usr.bin/cvs/src/Makefile.am index 768d4f8651a..fcbee3ec059 100644 --- a/gnu/usr.bin/cvs/src/Makefile.am +++ b/gnu/usr.bin/cvs/src/Makefile.am @@ -20,7 +20,7 @@ SHELL = /bin/sh # try and remove naming ocnflicts and fix Automake to allow particular includes # to be attached only to particular object files. Short term fix is either or. ##INCLUDES = -I. -I.. -I$(srcdir) -I$(top_srcdir)/lib -INCLUDES = -I$(top_srcdir)/lib -I$(top_srcdir)/diff -I$(top_srcdir)/zlib $(includeopt) +INCLUDES = -I$(top_srcdir)/lib -I$(top_srcdir)/diff $(includeopt) bin_PROGRAMS = cvs bin_SCRIPTS = cvsbug |