diff options
author | Ryan Dahl <ry@tinyclouds.org> | 2009-11-28 01:38:32 +0100 |
---|---|---|
committer | Ryan Dahl <ry@tinyclouds.org> | 2009-11-28 01:38:32 +0100 |
commit | 0cea946cb9030d772897b468e2f4e32e40842c2a (patch) | |
tree | 0256733def720bd8fdcb6405a49c60c21a42db32 | |
parent | 516874f4a151ad50004c9e7ec73885319519bcef (diff) | |
download | nodejs-0cea946cb9030d772897b468e2f4e32e40842c2a.tar.gz nodejs-0cea946cb9030d772897b468e2f4e32e40842c2a.tar.bz2 nodejs-0cea946cb9030d772897b468e2f4e32e40842c2a.zip |
Fix v8 SConstruct for freebsd
-rwxr-xr-x | deps/v8/SConstruct | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/deps/v8/SConstruct b/deps/v8/SConstruct index c2a750891..4da9b5b4f 100755 --- a/deps/v8/SConstruct +++ b/deps/v8/SConstruct @@ -544,7 +544,7 @@ def GuessToolchain(os): OS_GUESS = utils.GuessOS() TOOLCHAIN_GUESS = GuessToolchain(OS_GUESS) -ARCH_GUESS = utils.GuessArchitecture() +ARCH_GUESS = utils.GuessArchitecture() or "" SIMPLE_OPTIONS = { |