$OpenBSD: patch-chrome_browser_first_run_upgrade_util_linux_cc,v 1.2 2014/09/11 19:04:52 robert Exp $
--- chrome/browser/first_run/upgrade_util_linux.cc.orig.port	Wed Sep 10 01:47:12 2014
+++ chrome/browser/first_run/upgrade_util_linux.cc	Wed Sep 10 22:05:40 2014
@@ -22,10 +22,15 @@ double saved_last_modified_time_of_exe = 0;
 namespace upgrade_util {
 
 bool RelaunchChromeBrowser(const CommandLine& command_line) {
+#if !defined(OS_BSD)
   base::LaunchOptions options;
   // Don't set NO_NEW_PRIVS on the relaunched browser process.
   options.allow_new_privs = true;
   return base::LaunchProcess(command_line, options, NULL);
+#else
+  NOTIMPLEMENTED();
+  return false;
+#endif
 }
 
 bool IsUpdatePendingRestart() {
