Skip to content

Commit

Permalink
Tweak example build commands (simsong#140)
Browse files Browse the repository at this point in the history
bootstrap.sh will fail on most systems if run with "sh bootstrap.sh"
because it requires Bash and the system shell is usually something
faster. It will succeed if run with "./boostrap.sh" because it specifies
Bash with a shebang.

We might as well change "sh configure" to "./configure" as well because
the latter is more reliable and idiomatic.
  • Loading branch information
mmcco authored and simsong committed Dec 7, 2016
1 parent 3391ecc commit d5330f0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions INSTALL
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Better install instructions will go here.

1 - sh bootstrap.sh
2 - sh configure
1 - ./bootstrap.sh
2 - ./configure
3 - make
4 - make install

0 comments on commit d5330f0

Please sign in to comment.