diff options
author | tijl <tijl@FreeBSD.org> | 2014-10-07 17:22:27 +0800 |
---|---|---|
committer | tijl <tijl@FreeBSD.org> | 2014-10-07 17:22:27 +0800 |
commit | 58ae9868c0e55a25403fbb3182e507b540c68e68 (patch) | |
tree | 3f44a9ea530c4c6c06243bfda9ca1ed3fcdc5bff /Mk/bsd.autotools.mk | |
parent | 1ba8773ce033380dbcf1b134ba9ad9b3b1383847 (diff) | |
download | freebsd-ports-gnome-58ae9868c0e55a25403fbb3182e507b540c68e68.tar.gz freebsd-ports-gnome-58ae9868c0e55a25403fbb3182e507b540c68e68.tar.zst freebsd-ports-gnome-58ae9868c0e55a25403fbb3182e507b540c68e68.zip |
Remove unused configure-autotools target from Mk/bsd.autotools.mk and
Mk/bsd.port.mk
Approved by: portmgr (bapt)
Diffstat (limited to 'Mk/bsd.autotools.mk')
-rw-r--r-- | Mk/bsd.autotools.mk | 23 |
1 files changed, 0 insertions, 23 deletions
diff --git a/Mk/bsd.autotools.mk b/Mk/bsd.autotools.mk index 753d12b8ea70..f304d8a0b8eb 100644 --- a/Mk/bsd.autotools.mk +++ b/Mk/bsd.autotools.mk @@ -39,10 +39,6 @@ Autotools_Include_MAINTAINER= autotools@FreeBSD.org # LIBTOOLIZE_ARGS=... # - Extra arguments passed to libtoolize during configure step # -# AUTOTOOLSFILES=<list-of-files> -# - A list of files to further patch with derived information -# post-patching to reduce churn during component updates -# #--------------------------------------------------------------------------- #--------------------------------------------------------------------------- @@ -292,22 +288,3 @@ run-autotools-libtoolize: @${DO_NADA} . endif .endif - -#--------------------------------------------------------------------------- -# Reduce patch churn by auto-substituting data from AUTOTOOLS_VARS -# into the correct places. Code shamelessly stolen from PLIST_SUB. - -AUTOTOOLSFILES?= # default to empty -AUTOTOOLS_VARS?= # empty if not already set - -.if !target(configure-autotools) -configure-autotools:: -. if ${AUTOTOOLS_VARS}!="" && ${AUTOTOOLSFILES} != "" - @for file in ${AUTOTOOLSFILES}; do \ - ${REINPLACE_CMD} ${AUTOTOOLS_VARS:S/$/!g/:S/^/ -e s!%%/:S/=/%%!/} \ - ${WRKSRC}/$${file} ; \ - done -. else - @${DO_NADA} -. endif -.endif |