diff options
author | knu <knu@FreeBSD.org> | 2002-09-20 07:43:55 +0000 |
---|---|---|
committer | knu <knu@FreeBSD.org> | 2002-09-20 07:43:55 +0000 |
commit | afe51991001dcb52c1a7c33dfe109812d7eec83e (patch) | |
tree | 14b8aa4056f30b368cf3c549adfcc95866038781 /databases/sqlite2/Makefile | |
parent | 137e49b7cc84e2b5f333a883daf9e148e74923f1 (diff) | |
download | FreeBSD-ports-afe51991001dcb52c1a7c33dfe109812d7eec83e.zip FreeBSD-ports-afe51991001dcb52c1a7c33dfe109812d7eec83e.tar.gz |
Renumber the shlib major 2 instead of 0, which was unwanted
regression.
While I'm here, add libtclsqlite.la to ALL_TARGET so the libtclsqlite
library is properly built in the build stage instead of the install
stage.
Diffstat (limited to 'databases/sqlite2/Makefile')
-rw-r--r-- | databases/sqlite2/Makefile | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/databases/sqlite2/Makefile b/databases/sqlite2/Makefile index 28d5beb..f64e10b 100644 --- a/databases/sqlite2/Makefile +++ b/databases/sqlite2/Makefile @@ -8,7 +8,7 @@ PORTNAME= sqlite PORTVERSION= 2.7.1 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= databases MASTER_SITES= http://www.hwaci.com/sw/sqlite/ DISTNAME= ${PORTNAME}-${PORTVERSION} @@ -21,6 +21,7 @@ USE_GMAKE= YES GNU_CONFIGURE= YES USE_REINPLACE= YES CONFIGURE_ARGS= --prefix=${PREFIX} --with-hints=freebsd.hints +ALL_TARGET= all libtclsqlite.la INSTALLS_SHLIB= YES WRKSRC= ${WRKDIR}/${PORTNAME} @@ -51,7 +52,7 @@ post-install: @${MKDIR} ${DOCSDIR} @${INSTALL_DATA} ${FILESDIR}/example.tcl ${DOCSDIR} .for file in ${DOCFILES} - @${INSTALL_DATA} ${WRKSRC}/doc//${file} ${DOCSDIR} + @${INSTALL_DATA} ${WRKSRC}/doc/${file} ${DOCSDIR} .endfor .endif |