Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 12 Oct 1998 23:21:50 +0100
From:      Ben Smithurst <ben@scientia.demon.co.uk>
To:        "Justin M. Seger" <jseger@FreeBSD.ORG>
Cc:        cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG
Subject:   Re: cvs commit: ports/mail/bulk_mailer Makefile ports/mail/bulk_mailer/patches patch-ac
Message-ID:  <19981012232150.A20278@scientia.demon.co.uk>
In-Reply-To: <199810121833.LAA26749@freefall.freebsd.org>
References:  <199810121833.LAA26749@freefall.freebsd.org>

next in thread | previous in thread | raw e-mail | index | archive | help
Justin M. Seger wrote:

>   Mark BROKEN for ELF:
>   ===>  Installing for bulk_mailer-1.11
>   ===>   Generating temporary packing list
>   -s: not found
>   *** Error code 1

Looks like it expects ${STRIP} == strip, or something. Since (from what
I can see in other things) ${STRIP} isn't used for that, about the only
way to fix it must be ...

--- Makefile.orig	Mon Oct 12 23:02:33 1998
+++ Makefile	Mon Oct 12 23:11:53 1998
@@ -28,6 +28,6 @@
 	@ ${INSTALL_MAN} ${WRKSRC}/bulk_mailer.1 ${PREFIX}/man/man1/bulk_mailer.1
 
 post-install:
-	@ ${STRIP} ${PREFIX}/bin/bulk_mailer
+	@strip ${PREFIX}/bin/bulk_mailer
 
 .include <bsd.port.mk>

I'll probably get told this is a really bad idea, but never mind :-(

-- 
Ben Smithurst                                          ben@scientia.demon.co.uk

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



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