Date: Fri, 5 Jun 2015 05:13:28 +0000 (UTC) From: Baptiste Daroussin <bapt@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r388568 - head/sysutils/apcupsd Message-ID: <201506050513.t555DS6a062473@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: bapt Date: Fri Jun 5 05:13:27 2015 New Revision: 388568 URL: https://svnweb.freebsd.org/changeset/ports/388568 Log: Actually fix build as a user While here remove LIBS from CONFIGURE_ENV it was no-op since LIBS+= has been added (and not needed anymore) Reported by: amdmi3 Modified: head/sysutils/apcupsd/Makefile Modified: head/sysutils/apcupsd/Makefile ============================================================================== --- head/sysutils/apcupsd/Makefile Fri Jun 5 05:05:42 2015 (r388567) +++ head/sysutils/apcupsd/Makefile Fri Jun 5 05:13:27 2015 (r388568) @@ -23,7 +23,8 @@ CONFIGURE_ARGS= --sbindir=${PREFIX}/sbin --sysconfdir=${ETCDIR} \ --with-serial-dev=/dev/usv -CONFIGURE_ENV+= LD="${CXX}" LIBS="-lstdc++" +CONFIGURE_ENV+= LD="${CXX}" \ + ac_cv_path_SHUTDOWN="/sbin/shtdown" CPPFLAGS+= -I${LOCALBASE}/include LIBS+= -L${LOCALBASE}/lib
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201506050513.t555DS6a062473>