diff options
author | Baptiste Daroussin <bapt@FreeBSD.org> | 2015-09-13 21:19:44 +0000 |
---|---|---|
committer | Baptiste Daroussin <bapt@FreeBSD.org> | 2015-09-13 21:19:44 +0000 |
commit | 6c76340a88f24c60ca3882c566ea9a643e0c2578 (patch) | |
tree | c2c0461596912d42abca86dfb0966ce40d7a5976 | |
parent | Switch to GTK2 by default and remove option to switch back to gtk 1.2 (diff) |
Use options helpers
Remove LDFLAGS which was a wrong attempt to add -lm to the build (needed to build
modern binutils) a better approach as been committed in previous commit
Notes
Notes:
svn path=/head/; revision=396861
-rw-r--r-- | audio/autozen/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/audio/autozen/Makefile b/audio/autozen/Makefile index 79d6dbed4791..598db70a33e0 100644 --- a/audio/autozen/Makefile +++ b/audio/autozen/Makefile @@ -29,7 +29,6 @@ PORTDOCS= * USE_GNOME= gtk20 MAKE_ENV= GTK_CONFIG="pkg-config gtk+-2.0" -LDFLAGS+= -lm post-extract: @cd ${WRKSRC} && ${RM} -f autozen seq2wav @@ -51,6 +50,8 @@ do-install: ${INSTALL_MAN} ${WRKSRC}/doc/autozen.1 ${STAGEDIR}${MANPREFIX}/man/man1 @${MKDIR} ${STAGEDIR}${DATADIR} ${INSTALL_DATA} ${WRKSRC}/*.seq ${STAGEDIR}${DATADIR} + +do-install-DOCS-on: @${MKDIR} ${STAGEDIR}${DOCSDIR} cd ${WRKSRC}/doc && ${COPYTREE_SHARE} HTML ${STAGEDIR}${DOCSDIR} |