https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=202368

s...@lassitu.de changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|Closed                      |Open
         Resolution|FIXED                       |---

--- Comment #5 from s...@lassitu.de ---
Unfortunately, the version committed doesn't work.  DRIVER_MAKE_ARGS gets
defined unconditionally, but is never used, and chromedriver is never built.

Something like this is needed:
Index: Makefile
===================================================================
--- Makefile    (revision 394932)
+++ Makefile    (working copy)
@@ -196,6 +196,9 @@
         GPERF="${LOCALBASE}/bin/gperf"
 MAKE_ARGS=    -C out/${BUILDTYPE}
 DRIVER_MAKE_ARGS=chromedriver
+.if ${PORT_OPTIONS:MDRIVER}
+MAKE_ARGS+=    ${DRIVER_MAKE_ARGS}
+.endif

 .include <bsd.port.pre.mk>

-- 
You are receiving this mail because:
You are the assignee for the bug.
_______________________________________________
freebsd-chromium@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/freebsd-chromium
To unsubscribe, send any mail to "freebsd-chromium-unsubscr...@freebsd.org"

Reply via email to