svn commit: r378076 - head/devel/dmalloc

Bryan Drewery bdrewery at FreeBSD.org
Wed Jan 28 17:41:20 UTC 2015


Author: bdrewery
Date: Wed Jan 28 17:41:19 2015
New Revision: 378076
URL: https://svnweb.freebsd.org/changeset/ports/378076
QAT: https://qat.redports.org/buildarchive/r378076/

Log:
  - 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.

Modified:
  head/devel/dmalloc/Makefile

Modified: head/devel/dmalloc/Makefile
==============================================================================
--- head/devel/dmalloc/Makefile	Wed Jan 28 17:31:45 2015	(r378075)
+++ head/devel/dmalloc/Makefile	Wed Jan 28 17:41:19 2015	(r378076)
@@ -12,8 +12,9 @@ EXTRACT_SUFX=	.tgz
 MAINTAINER=	mjl at 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


More information about the svn-ports-all mailing list