Skip to content
This repository has been archived by the owner on Apr 22, 2023. It is now read-only.

Commit

Permalink
Browse files Browse the repository at this point in the history
build: expand ~ in ./configure --prefix=~/a/b/c
  • Loading branch information
bnoordhuis committed Jun 26, 2012
1 parent 07e5877 commit 06c82c5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion configure
Expand Up @@ -258,7 +258,7 @@ def compiler_version():

def configure_node(o):
# TODO add gdb
o['variables']['node_prefix'] = options.prefix if options.prefix else ''
o['variables']['node_prefix'] = os.path.expanduser(options.prefix or '')
o['variables']['node_install_npm'] = b(not options.without_npm)
o['variables']['node_install_waf'] = b(not options.without_waf)
o['variables']['host_arch'] = host_arch()
Expand Down

0 comments on commit 06c82c5

Please sign in to comment.