From 3f8b76ebd5599737ba99b00cfd54b5751c40b512 Mon Sep 17 00:00:00 2001 From: Ben Noordhuis Date: Fri, 2 Jan 2015 17:07:43 +0100 Subject: [PATCH] doc: rename node.1 -> iojs.1 PR-URL: https://github.com/iojs/io.js/pull/262 Reviewed-By: Bert Belder --- Makefile | 2 +- doc/{node.1 => iojs.1} | 8 ++++---- tools/install.py | 4 ++-- 3 files changed, 7 insertions(+), 7 deletions(-) rename doc/{node.1 => iojs.1} (99%) diff --git a/Makefile b/Makefile index d8d24070886..27ffb114dfb 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 similarity index 99% rename from doc/node.1 rename to doc/iojs.1 index a381dcf3345..3388c562ffa 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 c99dc1579bf..77e6d0cbd10 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)