svn commit: r449115 - head/x11/eterm

MANTANI Nobutaka nobutaka at FreeBSD.org
Sat Sep 2 09:38:22 UTC 2017


Author: nobutaka
Date: Sat Sep  2 09:38:21 2017
New Revision: 449115
URL: https://svnweb.freebsd.org/changeset/ports/449115

Log:
  Fix package build error on current.
  
  PR:		221628
  Submitted by:	nobutaka
  Approved by:	maintainer timeout (two weeks)

Modified:
  head/x11/eterm/Makefile

Modified: head/x11/eterm/Makefile
==============================================================================
--- head/x11/eterm/Makefile	Sat Sep  2 09:20:57 2017	(r449114)
+++ head/x11/eterm/Makefile	Sat Sep  2 09:38:21 2017	(r449115)
@@ -25,6 +25,13 @@ CONFIGURE_ARGS?=--enable-trans --enable-utmp \
 		--enable-xim --with-theme-update \
 		--with-backspace=bs --without-terminfo \
 		--enable-multi-charset
+
+.if exists(/usr/libexec/gdb)
+CONFIGURE_ENV=	GDB=/usr/libexec/gdb
+.else
+CONFIGURE_ENV=	GDB=/usr/bin/gdb
+.endif
+
 CPPFLAGS+=	-I${LOCALBASE}/include
 LDFLAGS+=	-L${LOCALBASE}/lib
 USES=		iconv libtool shebangfix


More information about the svn-ports-all mailing list