svn commit: r388568 - head/sysutils/apcupsd

Baptiste Daroussin bapt at FreeBSD.org
Fri Jun 5 05:13:28 UTC 2015


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
 


More information about the svn-ports-all mailing list