diff options
author | antoine <antoine@FreeBSD.org> | 2016-01-22 05:03:21 +0800 |
---|---|---|
committer | antoine <antoine@FreeBSD.org> | 2016-01-22 05:03:21 +0800 |
commit | 0723aa1b0d554b35e64f2049772e0556d49ce575 (patch) | |
tree | 0808be3663611fcdb0740a690fd25c8118dbc78e | |
parent | 1bd155a79dca5c1438a10a617355fff4a6c1d120 (diff) | |
download | freebsd-ports-gnome-0723aa1b0d554b35e64f2049772e0556d49ce575.tar.gz freebsd-ports-gnome-0723aa1b0d554b35e64f2049772e0556d49ce575.tar.zst freebsd-ports-gnome-0723aa1b0d554b35e64f2049772e0556d49ce575.zip |
libtool --finish is a nop on FreeBSD, remove faulty pkg-install script
With hat: portmgr
-rw-r--r-- | databases/sqlite3/Makefile | 1 | ||||
-rw-r--r-- | databases/sqlite3/pkg-install | 7 |
2 files changed, 1 insertions, 7 deletions
diff --git a/databases/sqlite3/Makefile b/databases/sqlite3/Makefile index c65537fd6c82..477fa24682de 100644 --- a/databases/sqlite3/Makefile +++ b/databases/sqlite3/Makefile @@ -3,6 +3,7 @@ PORTNAME= sqlite3 PORTVERSION= 3.10.2 +PORTREVISION= 1 CATEGORIES= databases MASTER_SITES= https://www.sqlite.org/2016/ http://www2.sqlite.org/2016/ http://www3.sqlite.org/2016/ DISTNAME= sqlite-autoconf-${PORTVERSION:C/\.([[:digit:]])[[:>:]]/0\1/g:S/.//g}00 diff --git a/databases/sqlite3/pkg-install b/databases/sqlite3/pkg-install deleted file mode 100644 index 5569486f5a1c..000000000000 --- a/databases/sqlite3/pkg-install +++ /dev/null @@ -1,7 +0,0 @@ -#!/bin/sh -PKGNAME=$1 -LIBTOOL=`whereis -b -q libtool` -case "$2" in - PRE-INSTALL) ;; - POST-INSTALL) [ -n "${LIBTOOL}" -a -n "${PKG_PREFIX}" ] && "${LIBTOOL}" --finish "${PKG_PREFIX}/lib" ;; -esac |