diff options
author | skrll <skrll@pkgsrc.org> | 2001-04-23 08:26:01 +0000 |
---|---|---|
committer | skrll <skrll@pkgsrc.org> | 2001-04-23 08:26:01 +0000 |
commit | 2154bcc4e4717473b4ce72fdd55a116c459e200f (patch) | |
tree | f80b79b912e1b3092b6dac87db90546437e4485f /comms/plp/patches | |
parent | cf2f0e80d76d63096bdfb5c61a5ead6728a3c5d3 (diff) | |
download | pkgsrc-2154bcc4e4717473b4ce72fdd55a116c459e200f.tar.gz |
Pass CXX down in MAKE_ENV rather than hardcoding g++. This makes libtool
happy.
Noted in recent i386 bulk build.
Diffstat (limited to 'comms/plp/patches')
-rw-r--r-- | comms/plp/patches/patch-af | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/comms/plp/patches/patch-af b/comms/plp/patches/patch-af index 7147b76e464..3caf1c847fb 100644 --- a/comms/plp/patches/patch-af +++ b/comms/plp/patches/patch-af @@ -1,4 +1,4 @@ -$NetBSD: patch-af,v 1.3 2001/04/22 17:43:19 skrll Exp $ +$NetBSD: patch-af,v 1.4 2001/04/23 08:26:01 skrll Exp $ --- Makefile.orig Tue Nov 2 21:05:02 1999 +++ Makefile @@ -7,7 +7,7 @@ $NetBSD: patch-af,v 1.3 2001/04/22 17:43:19 skrll Exp $ INCLUDE=-I../utils CFLAGS= -Wall -g -O2 -CC=g++ $(CFLAGS) $(INCLUDE) -+CC=$(LIBTOOL) --mode=compile g++ $(CFLAGS) $(INCLUDE) ++CC=$(LIBTOOL) --mode=compile $(REALCXX) $(CFLAGS) $(INCLUDE) # Linker and flags -LIBDIR=-L../utils @@ -19,7 +19,7 @@ $NetBSD: patch-af,v 1.3 2001/04/22 17:43:19 skrll Exp $ -# Archiver -AR=ar -cr +LIBS=../utils/libplputils.la -+LD=$(LIBTOOL) --mode=link g++ ++LD=$(LIBTOOL) --mode=link $(REALCXX) ####################################### # You shouldn't need to look any further.. |