summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBen Noordhuis <info@bnoordhuis.nl>2015-01-02 17:07:43 +0100
committerBen Noordhuis <info@bnoordhuis.nl>2015-01-08 23:21:12 +0100
commit3f8b76ebd5599737ba99b00cfd54b5751c40b512 (patch)
tree56b370dfc6b7400fe9b0bef79f1fcd1a741dd542
parent73b9323488a3e5bdd9a2b22dcb5d6daa497c8282 (diff)
downloadandroid-node-v8-3f8b76ebd5599737ba99b00cfd54b5751c40b512.tar.gz
android-node-v8-3f8b76ebd5599737ba99b00cfd54b5751c40b512.tar.bz2
android-node-v8-3f8b76ebd5599737ba99b00cfd54b5751c40b512.zip
doc: rename node.1 -> iojs.1
PR-URL: https://github.com/iojs/io.js/pull/262 Reviewed-By: Bert Belder <bertbelder@gmail.com>
-rw-r--r--Makefile2
-rw-r--r--doc/iojs.1 (renamed from doc/node.1)8
-rwxr-xr-xtools/install.py4
3 files changed, 7 insertions, 7 deletions
diff --git a/Makefile b/Makefile
index d8d2407088..27ffb114df 100644
--- a/Makefile
+++ b/Makefile
@@ -314,7 +314,7 @@ $(PKG): release-only
$(TARBALL): release-only $(NODE_EXE) doc
git archive --format=tar --prefix=$(TARNAME)/ HEAD | tar xf -
mkdir -p $(TARNAME)/doc/api
- cp doc/node.1 $(TARNAME)/doc/node.1
+ cp doc/iojs.1 $(TARNAME)/doc/iojs.1
cp -r out/doc/api/* $(TARNAME)/doc/api/
rm -rf $(TARNAME)/deps/v8/test # too big
rm -rf $(TARNAME)/doc/images # too big
diff --git a/doc/node.1 b/doc/iojs.1
index a381dcf334..3388c562ff 100644
--- a/doc/node.1
+++ b/doc/iojs.1
@@ -107,7 +107,7 @@ If set to 1 then colors will not be used in the REPL.
--crankshaft (use crankshaft)
type: bool default: true
--hydrogen_filter (optimization filter)
- type: string default:
+ type: string default:
--use_range (use hydrogen range analysis)
type: bool default: true
--eliminate_dead_phis (eliminate dead phis)
@@ -385,9 +385,9 @@ If set to 1 then colors will not be used in the REPL.
--debugger_port (Port to use for remote debugging)
type: int default: 5858
--map_counters (Map counters to a file)
- type: string default:
+ type: string default:
--js_arguments (Pass all remaining arguments to the script. Alias for "--".)
- type: arguments default:
+ type: arguments default:
--debug_compile_events (Enable debugger compile events)
type: bool default: true
--debug_script_collected_events (Enable debugger script collected events)
@@ -399,7 +399,7 @@ If set to 1 then colors will not be used in the REPL.
--gdbjit_dump (dump elf objects with debug info to disk)
type: bool default: false
--gdbjit_dump_filter (dump only objects containing this substring)
- type: string default:
+ type: string default:
--force_marking_deque_overflows (force overflows of marking deque by reducing its size to 64 words)
type: bool default: false
--stress_compaction (stress the GC compactor to flush out bugs (implies --force_marking_deque_overflows))
diff --git a/tools/install.py b/tools/install.py
index c99dc1579b..77e6d0cbd1 100755
--- a/tools/install.py
+++ b/tools/install.py
@@ -137,9 +137,9 @@ def files(action):
action(['src/node.stp'], 'share/systemtap/tapset/')
if 'freebsd' in sys.platform or 'openbsd' in sys.platform:
- action(['doc/node.1'], 'man/man1/')
+ action(['doc/iojs.1'], 'man/man1/')
else:
- action(['doc/node.1'], 'share/man/man1/')
+ action(['doc/iojs.1'], 'share/man/man1/')
if 'true' == variables.get('node_install_npm'): npm_files(action)