Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 17 Feb 2003 21:22:41 -0800 (PST)
From:      Edwin Groothuis <edwin@FreeBSD.org>
To:        edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, jmz@FreeBSD.org
Subject:   Re: ports/48397: malformed make file in /usr/ports/comms/mgetty+sendfax
Message-ID:  <200302180522.h1I5MfMj061715@freefall.freebsd.org>

next in thread | raw e-mail | index | archive | help
Synopsis: malformed make file in /usr/ports/comms/mgetty+sendfax

Responsible-Changed-From-To: freebsd-ports-bugs->jmz
Responsible-Changed-By: edwin
Responsible-Changed-When: Mon Feb 17 21:19:53 PST 2003
Responsible-Changed-Why: 
Over to maintainer. Problem is that the old make used on FreeBSD
4.5 isn't fully compliant with regarding of conditionals. To overcome
it, use this patch:

--- Makefile    8 Feb 2003 18:17:40 -0000       1.43
+++ Makefile    18 Feb 2003 05:22:24 -0000
@@ -62,8 +62,10 @@
                pvf.1 wavtopvf.1
 
 CFLAGS+=       -DAUTO_PPP
-.if defined(WITH_FIDO) && ${WITH_FIDO:L} != no
+.if defined(WITH_FIDO)
+.if ${WITH_FIDO:L} != no
 CFLAGS+=       -DFIDO
+.endif
 .endif
 
 pre-everything::




http://www.freebsd.org/cgi/query-pr.cgi?pr=48397

To Unsubscribe: send mail to majordomo@FreeBSD.org
with "unsubscribe freebsd-ports-bugs" in the body of the message




Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200302180522.h1I5MfMj061715>