diff options
author | Todd C. Miller <millert@cvs.openbsd.org> | 2003-12-18 06:19:23 +0000 |
---|---|---|
committer | Todd C. Miller <millert@cvs.openbsd.org> | 2003-12-18 06:19:23 +0000 |
commit | 894af4827d894223f37863cf3c3af6a06c29e6ed (patch) | |
tree | 49f0ada0bb9e2bc958135b58f889d0b03ae8247d /gnu/usr.bin/cvs | |
parent | 025a10e7115b64b638012d4a97d22d59b77dd504 (diff) |
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')
-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 |