diff options
author | wiz <wiz> | 2005-02-15 16:04:42 +0000 |
---|---|---|
committer | wiz <wiz> | 2005-02-15 16:04:42 +0000 |
commit | 0d280d50d9c7a13e3d16df08497ef44466ef819f (patch) | |
tree | e1101532935d79cb1bd41208a1b3bb40907ded00 /pkgtools | |
parent | 681d63d23b42991a9db67bae1d95d8aef5588c3e (diff) | |
download | pkgsrc-0d280d50d9c7a13e3d16df08497ef44466ef819f.tar.gz |
Revert previous, since it breaks compilation on 2.0 and -current.
See PR 29387.
Diffstat (limited to 'pkgtools')
-rw-r--r-- | pkgtools/libnbcompat/files/Makefile.in | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/pkgtools/libnbcompat/files/Makefile.in b/pkgtools/libnbcompat/files/Makefile.in index 24ea56012e6..8d103c00a20 100644 --- a/pkgtools/libnbcompat/files/Makefile.in +++ b/pkgtools/libnbcompat/files/Makefile.in @@ -1,4 +1,4 @@ -# $NetBSD: Makefile.in,v 1.28 2005/02/15 08:55:55 grant Exp $ +# $NetBSD: Makefile.in,v 1.29 2005/02/15 16:04:42 wiz Exp $ # srcdir= @srcdir@ @@ -7,7 +7,6 @@ VPATH= @srcdir@ SHELL= /bin/sh CC= @CC@ -CCLD= @CC@ CFLAGS= -I$(srcdir) -I. @INCLUDES@ @CFLAGS@ CPPFLAGS= @CPPFLAGS@ DEFS= @DEFS@ @@ -77,8 +76,8 @@ nbcompat/nbconfig.h: nbcompat/config.h nbcompat.awk nbcompat/nbtypes.h: bits ./bits $@ -bits: bits.o - $(LINK) $< +bits: bits.c + $(COMPILE) $(DEFS) -o bits bits.c install: $(INSTALL) -m 755 -d $(prefix)/lib |