diff options
author | Emil Velikov <emil.velikov@collabora.com> | 2017-09-04 17:08:15 +0100 |
---|---|---|
committer | Emil Velikov <emil.l.velikov@gmail.com> | 2017-09-06 17:48:50 +0100 |
commit | 0f246602450712e52282aa9c1acc3c83629f7078 (patch) | |
tree | 0a6cc3e30b6ae62280f8439e606923a3f96c5ee3 /docs | |
parent | 368734d014510aa82403a8064c5f57a76d0ba406 (diff) |
docs/releasing: remove -jX instances
One can control the number of jobs via MAKEFLAGS. As such there's
little reason to set the number of jobs for each make invocation.
Signed-off-by: Emil Velikov <emil.velikov@collabora.com>
Reviewed-by: Andres Gomez <agomez@igalia.com>
Reviewed-by: Eric Engestrom <eric.engestrom@imgtec.com>
Diffstat (limited to 'docs')
-rw-r--r-- | docs/releasing.html | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/docs/releasing.html b/docs/releasing.html index 0af05af31a..d74411532c 100644 --- a/docs/releasing.html +++ b/docs/releasing.html @@ -428,6 +428,7 @@ Here is one solution that I've been using. </p> <pre> + # Set MAKEFLAGS if you haven't already git clean -fXd; git clean -nxd read # quick cross check any outstanding files export __version=`cat VERSION` @@ -438,7 +439,7 @@ Here is one solution that I've been using. # For the distcheck, you may want to specify which LLVM to use: # export LLVM_CONFIG=/usr/lib/llvm-3.9/bin/llvm-config - $__mesa_root/autogen.sh && make -j2 distcheck + $__mesa_root/autogen.sh && make distcheck # Build check the tarballs (scons, linux) tar -xaf mesa-$__version.tar.xz && cd mesa-$__version @@ -466,7 +467,7 @@ Here is one solution that I've been using. --enable-gbm \ --enable-egl \ --with-platforms=x11,drm,wayland,surfaceless - make -j2 && DESTDIR=`pwd`/test make -j6 install + make && DESTDIR=`pwd`/test make install __glxinfo_cmd='glxinfo 2>&1 | egrep -o "Mesa.*|Gallium.*|.*dri\.so"' __glxgears_cmd='glxgears 2>&1 | grep -v "configuration file"' __es2info_cmd='es2_info 2>&1 | egrep "GL_VERSION|GL_RENDERER|.*dri\.so"' |