Skip to content

Commit

Permalink
doc: rename node.1 -> iojs.1
Browse files Browse the repository at this point in the history
PR-URL: nodejs#262
Reviewed-By: Bert Belder <bertbelder@gmail.com>
  • Loading branch information
bnoordhuis committed Jan 8, 2015
1 parent 73b9323 commit 3f8b76e
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
8 changes: 4 additions & 4 deletions doc/node.1 → doc/iojs.1
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down Expand Up @@ -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)
Expand All @@ -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))
Expand Down
4 changes: 2 additions & 2 deletions tools/install.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)

Expand Down

0 comments on commit 3f8b76e

Please sign in to comment.