diff options
author | jkim <jkim@FreeBSD.org> | 2017-07-29 05:45:20 +0800 |
---|---|---|
committer | jkim <jkim@FreeBSD.org> | 2017-07-29 05:45:20 +0800 |
commit | 37f42e3731b6421168cc6d1376fe8e064a767d16 (patch) | |
tree | a79f71211dc0ed6f08a805235e59f1fc3946e774 /textproc | |
parent | 184408c6f2a3d7e6645a3e28cf294fc9a0943e2e (diff) | |
download | freebsd-ports-gnome-37f42e3731b6421168cc6d1376fe8e064a767d16.tar.gz freebsd-ports-gnome-37f42e3731b6421168cc6d1376fe8e064a767d16.tar.zst freebsd-ports-gnome-37f42e3731b6421168cc6d1376fe8e064a767d16.zip |
Set MAKEINFO to the full path of makeinfo when USES=makeinfo is set.
PR: 221027
Reviewed by: mat
Approved by: portmgr (antoine)
Diffstat (limited to 'textproc')
-rw-r--r-- | textproc/flex/Makefile | 2 | ||||
-rw-r--r-- | textproc/gsed/Makefile | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/textproc/flex/Makefile b/textproc/flex/Makefile index 6f14c8adb9f0..3531b5ceb45f 100644 --- a/textproc/flex/Makefile +++ b/textproc/flex/Makefile @@ -16,7 +16,7 @@ USES= bison gmake libtool makeinfo tar:xz GNU_CONFIGURE= yes # install flex header to its own dir to avoid conflict with system flex. CONFIGURE_ARGS= --includedir=${PREFIX}/include/flex --disable-shared -CONFIGURE_ENV= M4=${LOCALBASE}/bin/gm4 MAKEINFO="makeinfo --no-split" +CONFIGURE_ENV= M4=${LOCALBASE}/bin/gm4 MAKEINFO="${MAKEINFO} --no-split" INSTALL_TARGET= install-strip INFO= flex diff --git a/textproc/gsed/Makefile b/textproc/gsed/Makefile index eb34f16b0251..cf85d0169faa 100644 --- a/textproc/gsed/Makefile +++ b/textproc/gsed/Makefile @@ -12,7 +12,7 @@ MAINTAINER= johans@FreeBSD.org COMMENT= The GNU stream editor GNU_CONFIGURE= yes -CONFIGURE_ENV+= MAKEINFO="makeinfo --no-split" +CONFIGURE_ENV+= MAKEINFO="${MAKEINFO} --no-split" USES= charsetfix makeinfo gmake PATCH_SUBDIRS= . doc lib sed |