diff options
author | marcus <marcus@FreeBSD.org> | 2014-02-21 23:26:23 +0800 |
---|---|---|
committer | marcus <marcus@FreeBSD.org> | 2014-02-21 23:26:23 +0800 |
commit | 7963d6182b1e405f2e6a70959b45d3226d854224 (patch) | |
tree | 8447bb7ad3622c5931ce880af861ac9db7b82ed2 | |
parent | df0d83cf9c081e319da2e72cf87abddd9eb91137 (diff) | |
download | freebsd-ports-gnome-7963d6182b1e405f2e6a70959b45d3226d854224.tar.gz freebsd-ports-gnome-7963d6182b1e405f2e6a70959b45d3226d854224.tar.zst freebsd-ports-gnome-7963d6182b1e405f2e6a70959b45d3226d854224.zip |
Correct a typo when configuring dynamic prpl modules. I seem to recall this
was a typo on purpose at some point, but the new configure uses '-' instead
of '_'.
-rw-r--r-- | net-im/libpurple/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net-im/libpurple/Makefile b/net-im/libpurple/Makefile index 96740d25cce6..09675f06aafa 100644 --- a/net-im/libpurple/Makefile +++ b/net-im/libpurple/Makefile @@ -18,7 +18,7 @@ USE_GNOME?= gnomeprefix intlhack glib20 libxml2 GNU_CONFIGURE= yes CONFIGURE_ARGS?=--disable-gtkui \ --disable-consoleui \ - --with-dynamic_prpls=${PRPL_MODULES:S/,$//} \ + --with-dynamic-prpls=${PRPL_MODULES:S/,$//} \ --enable-static \ --disable-nm CONFIGURE_ENV= LIBS="-L${LOCALBASE}/lib ${PTHREAD_LIBS}" \ |