diff options
author | obache <obache@pkgsrc.org> | 2010-01-23 04:45:20 +0000 |
---|---|---|
committer | obache <obache@pkgsrc.org> | 2010-01-23 04:45:20 +0000 |
commit | 7bdb067e2884beb62674bb5c16f7caa6072a32f9 (patch) | |
tree | a6042486eac091566adca9bf76f6ae84e0b88f1c /mail/dbmail | |
parent | 1fb4848dfcee4a3811761ac561b0f470e5164d32 (diff) | |
download | pkgsrc-7bdb067e2884beb62674bb5c16f7caa6072a32f9.tar.gz |
Fixes scripts installation path for postgresql.
Diffstat (limited to 'mail/dbmail')
-rw-r--r-- | mail/dbmail/options.mk | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/mail/dbmail/options.mk b/mail/dbmail/options.mk index 6b5b82c5e3c..1119d99e675 100644 --- a/mail/dbmail/options.mk +++ b/mail/dbmail/options.mk @@ -1,4 +1,4 @@ -# $NetBSD: options.mk,v 1.8 2008/04/12 22:43:03 jlam Exp $ +# $NetBSD: options.mk,v 1.9 2010/01/23 04:45:20 obache Exp $ PKG_OPTIONS_VAR= PKG_OPTIONS.dbmail PKG_SUPPORTED_OPTIONS= ldap sieve @@ -27,7 +27,7 @@ INSTALLATION_DIRS+= ${DATADIR}/sql/mysql .include "../../mk/pgsql.buildlink3.mk" CONFIGURE_ARGS+= --with-pgsql PLIST.pgsql= yes -INSTALLATION_DIRS+= ${DATADIR}/sql/pgsql +INSTALLATION_DIRS+= ${DATADIR}/sql/postgresql .endif ### @@ -73,7 +73,7 @@ dbmail-install-scripts: ${INSTALL_DATA} ${WRKSRC}/sql/mysql/* ${DESTDIR}${DATADIR}/sql/mysql .endif .if !empty(PKG_OPTIONS:Mpgsql) - ${INSTALL_DATA} ${WRKSRC}/sql/postgresql/* ${DESTDIR}${DATADIR}/sql/pgsql + ${INSTALL_DATA} ${WRKSRC}/sql/postgresql/* ${DESTDIR}${DATADIR}/sql/postgresql .endif .if !empty(PKG_OPTIONS:Msqlite) ${INSTALL_DATA} ${WRKSRC}/sql/sqlite/* ${DESTDIR}${DATADIR}/sql/sqlite |