diff options
| -rw-r--r-- | Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -86,7 +86,7 @@ build: --add-module=./redis2-nginx-module \ --add-module=./nginx-statsd $(NGX_CONFIGURE) cd $(BUILD_DIR)/ && \ - make -j $(grep -c processor /proc/cpuinfo) + bash -c "make -j $$(grep -c processor /proc/cpuinfo)" install: cd $(BUILD_DIR)/ && make install @@ -118,5 +118,5 @@ help: @echo "This is a Makefile to automatize compiling nginx from source.\n" @echo "Run 'make fetch' to fetch the core and addons." @echo "Run 'make build' to configure and compile nginx. If you want to pass options to ./configure you can do this with 'NGX_CONFIGURE=options... make build' on the commmand line." - @echo "'make install' will install it system wide (needs root previleges)." + @echo "'make install' will install it system wide (needs root privileges)." @echo "If you are on GNU/Debian, you can run 'make prepare' to install some needed libraries." |
