doc: rename node.1 -> iojs.1

PR-URL: https://github.com/iojs/io.js/pull/262
Reviewed-By: Bert Belder <bertbelder@gmail.com>
This commit is contained in:
Ben Noordhuis 2015-01-02 17:07:43 +01:00
parent 73b9323488
commit 3f8b76ebd5
3 changed files with 7 additions and 7 deletions

View File

@ -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

View File

@ -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))

View File

@ -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)