Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 21 Jun 2001 20:19:45 +0300
From:      Peter Pentchev <roam@orbitel.bg>
To:        Jordan Hubbard <jkh@winston.osd.bsdi.com>
Cc:        arch@FreeBSD.org
Subject:   src/release/Makefile NO_SENDMAIL fix
Message-ID:  <20010621201945.A22338@ringworld.oblivion.bg>

next in thread | raw e-mail | index | archive | help
Hi,

Is there an overwhelming reason this should not go into the tree,
thus enabling custom NO_SENDMAIL release builds?

G'luck,
Peter

-- 
If I were you, who would be reading this sentence?

Index: src/release/Makefile
===================================================================
RCS file: /home/ncvs/src/release/Makefile,v
retrieving revision 1.624
diff -u -r1.624 Makefile
--- src/release/Makefile	2001/06/14 23:48:13	1.624
+++ src/release/Makefile	2001/06/21 17:20:01
@@ -184,6 +184,12 @@
 CD_DISC1=		${CD}/disc1
 CD_DISC2=		${CD}/disc2
 
+# Things that need to be compiled without crypto support in releases
+FIXCRYPTO=	bin/ed usr.sbin/ppp usr.sbin/pppd usr.sbin/tcpdump/tcpdump 
+.if !defined(NO_SENDMAIL)
+FIXCRYPTO+=	usr.sbin/sendmail
+.endif
+
 # Where the bootstrap ports (see DOCPORTS) get installed.
 LOCALDIR=		/usr/local/bin
 
@@ -466,7 +472,7 @@
 #
 release.5:
 	# Handle some grief caused by the munition braindeadness.
-	for i in bin/ed usr.sbin/ppp usr.sbin/pppd usr.sbin/sendmail usr.sbin/tcpdump/tcpdump ; do \
+	for i in ${FIXCRYPTO}; do \
 		( cd ${.CURDIR}/../$$i; \
 		  make -DNOCRYPT clean all distribute DISTDIR=${RD}/trees ) ; \
 	done

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




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