diff options
author | bdrewery <bdrewery@FreeBSD.org> | 2015-01-29 01:41:19 +0800 |
---|---|---|
committer | bdrewery <bdrewery@FreeBSD.org> | 2015-01-29 01:41:19 +0800 |
commit | a4bd7fb551795f8972c27261f9427a4886793f20 (patch) | |
tree | ad4c86d893ebb96a237c2c3ff5807d8477217b84 /devel | |
parent | c4dbc5082f394a4a51fb7ca1b41e4df6f8d75c73 (diff) | |
download | freebsd-ports-gnome-a4bd7fb551795f8972c27261f9427a4886793f20.tar.gz freebsd-ports-gnome-a4bd7fb551795f8972c27261f9427a4886793f20.tar.zst freebsd-ports-gnome-a4bd7fb551795f8972c27261f9427a4886793f20.zip |
- Use GNU_CONFIGURE so CONFIG_SITE is used for quicker build due to caching.
The included Makefile.in does not support DESTDIR, so the --prefix hack
is still needed.
Diffstat (limited to 'devel')
-rw-r--r-- | devel/dmalloc/Makefile | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/devel/dmalloc/Makefile b/devel/dmalloc/Makefile index f665d41987b3..e20a85755f06 100644 --- a/devel/dmalloc/Makefile +++ b/devel/dmalloc/Makefile @@ -12,8 +12,9 @@ EXTRACT_SUFX= .tgz MAINTAINER= mjl@luckie.org.nz COMMENT= Portable debug memory allocation library -HAS_CONFIGURE= yes -CONFIGURE_ARGS= --enable-threads --enable-shlib --prefix="${STAGEDIR}${PREFIX}" +GNU_CONFIGURE= yes +CONFIGURE_ARGS= --enable-threads --enable-shlib +GNU_CONFIGURE_PREFIX= "${STAGEDIR}${PREFIX}" CONFIGURE_ENV= INSTALL_PROGRAM="${INSTALL_DATA}" CFLAGS= -fPIC USE_LDCONFIG= yes |