mirror of
https://git.freebsd.org/ports.git
synced 2025-05-15 08:41:51 -04:00
Build cross platform desktop apps with JavaScript, HTML, and CSS. It's easier than you think. If you can build a website, you can build a desktop app. Electron is a framework for creating native applications with web technologies like JavaScript, HTML, and CSS. It takes care of the hard parts so you can focus on the core of your application. WWW: https://electronjs.org/
11 lines
396 B
Python
11 lines
396 B
Python
--- v8/tools/run.py.orig 2022-05-19 14:06:27 UTC
|
|
+++ v8/tools/run.py
|
|
@@ -9,7 +9,7 @@ scripts."""
|
|
import subprocess
|
|
import sys
|
|
|
|
-result = subprocess.call(sys.argv[1:])
|
|
+sys.exit(subprocess.call(sys.argv[1:], env={"LD_LIBRARY_PATH":"${WRKSRC}/out/Release"}))
|
|
if result != 0:
|
|
# Windows error codes such as 0xC0000005 and 0xC0000409 are much easier
|
|
# to recognize and differentiate in hex.
|