Date: Tue, 1 Sep 1998 20:25:10 +0200 From: Ollivier Robert <roberto@keltia.freenix.fr> To: freebsd-current@FreeBSD.ORG Subject: Re: About today's make world... Message-ID: <19980901202510.B18641@keltia.freenix.fr> In-Reply-To: =?iso-8859-1?Q?=3CPine=2EBSF=2E4=2E02A=2E9809011858460=2E957-100000=40se?= =?iso-8859-1?Q?rv=2Eetrust=2Eru=3E=3B_from_=F3=C5=D2=C7=C5=CA_=EF=D3=CF?= =?iso-8859-1?Q?=CB=C9=CE_on_Tue=2C_Sep_01=2C_1998_at_07:02:45PM_%2B0400?= References: <Pine.BSF.4.02A.9809011858460.957-100000@serv.etrust.ru>
next in thread | previous in thread | raw e-mail | index | archive | help
According to Сергей Осокин:
> ===> lib/../secure/lib/libcrypt
> "Makefile", line 8: Malformed conditional (${BINFORMAT} != elf)
> "Makefile", line 11: if-less else
> "Makefile", line 11: Need an operator
> "Makefile", line 14: if-less endif
> "Makefile", line 14: Need an operator
> "Makefile", line 24: Malformed conditional (${BINFORMAT} == elf)
> "Makefile", line 24: Need an operator
> "Makefile", line 26: if-less endif
> "Makefile", line 26: Need an operator
> "Makefile", line 43: Malformed conditional (!defined(NOPIC) && defined(SHLIB_MAJOR) && ${BINFORMAT} == elf)
> "Makefile", line 49: if-less endif
> "Makefile", line 49: Need an operator
> What can i do?
Apply this to secure/lib/libcrypt/Makefile. How are you updateing your
secure subdirectory anyway ? My own is maintained by the International CTM
deltas sent by internat.freebsd.org.
Index: Makefile
===================================================================
RCS file: /spare/secure/src/secure/lib/libcrypt/Makefile,v
retrieving revision 1.11
retrieving revision 1.12
diff -u -2 -r1.11 -r1.12
--- Makefile 1997/09/05 12:20:22 1.11
+++ Makefile 1998/08/31 06:27:50 1.12
@@ -1,4 +1,4 @@
#
-# $Id: Makefile,v 1.11 1997/09/05 12:20:22 peter Exp $
+# $Id: Makefile,v 1.12 1998/08/31 06:27:50 markm Exp $
#
@@ -6,5 +6,5 @@
LDCRYPTBASE= libdescrypt
-.if ${BINFORMAT} != elf
+.if ${OBJFORMAT} != elf
LCRYPTSO= $(LCRYPTBASE).so.$(SHLIB_MAJOR).$(SHLIB_MINOR)
LDCRYPTSO= $(LDCRYPTBASE).so.$(SHLIB_MAJOR).$(SHLIB_MINOR)
@@ -22,5 +22,5 @@
PRECIOUSLIB= yes
-.if ${BINFORMAT} == elf
+.if ${OBJFORMAT} == elf
SONAME= ${LCRYPTBASE}.so.$(SHLIB_MAJOR)
.endif
@@ -41,5 +41,5 @@
fi
.endif
-.if !defined(NOPIC) && defined(SHLIB_MAJOR) && ${BINFORMAT} == elf
+.if !defined(NOPIC) && defined(SHLIB_MAJOR) && ${OBJFORMAT} == elf
@cd $(DESTDIR)/$(LIBDIR); \
if [ ! -e $(LCRYPTBASE).so ]; then \
--
Ollivier ROBERT -=- FreeBSD: The Power to Serve! -=- roberto@keltia.freenix.fr
FreeBSD keltia.freenix.fr 3.0-CURRENT #62: Mon Jul 27 20:47:08 CEST 1998
To Unsubscribe: send mail to majordomo@FreeBSD.org
with "unsubscribe freebsd-current" in the body of the message
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?19980901202510.B18641>
