diff options
author | joerg <joerg@pkgsrc.org> | 2008-04-06 17:47:27 +0000 |
---|---|---|
committer | joerg <joerg@pkgsrc.org> | 2008-04-06 17:47:27 +0000 |
commit | 18d8ba7ebda70018cf3237d75519a85a5fe44c9f (patch) | |
tree | a74cce09746a223d01140683d7d3eb16fd6e90e3 /pkgtools | |
parent | aeb23fd429901a908488bcbc57bbbc59dc1d4216 (diff) | |
download | pkgsrc-18d8ba7ebda70018cf3237d75519a85a5fe44c9f.tar.gz |
Don't build pkg_io.c during bootstrap.
Diffstat (limited to 'pkgtools')
-rw-r--r-- | pkgtools/pkg_install/files/lib/Makefile.in | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/pkgtools/pkg_install/files/lib/Makefile.in b/pkgtools/pkg_install/files/lib/Makefile.in index f542390de47..95b846a5b83 100644 --- a/pkgtools/pkg_install/files/lib/Makefile.in +++ b/pkgtools/pkg_install/files/lib/Makefile.in @@ -1,4 +1,4 @@ -# $NetBSD: Makefile.in,v 1.20 2008/04/04 15:21:32 joerg Exp $ +# $NetBSD: Makefile.in,v 1.21 2008/04/06 17:47:27 joerg Exp $ srcdir= @srcdir@ @@ -29,11 +29,13 @@ LIB= libinstall.a OBJS= automatic.o conflicts.o decompress.o dewey.o fexec.o file.o \ ftpio.o global.o iterate.o lpkg.o opattern.o \ - path.o pen.o pexec.o pkgdb.o pkg_io.o plist.o \ + path.o pen.o pexec.o pkgdb.o plist.o \ str.o var.o version.o vulnerabilities-file.o .if !empty(BOOTSTRAP) CPPFLAGS+= -DBOOTSTRAP +.else +OBJS+= pkg_io.o .endif all: $(LIB) |