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

[email protected] changed:

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

--- Comment #5 from [email protected] ---
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.
_______________________________________________
[email protected] mailing list
https://lists.freebsd.org/mailman/listinfo/freebsd-chromium
To unsubscribe, send any mail to "[email protected]"

Reply via email to