docs/releasing: remove -jX instances
authorEmil Velikov <emil.velikov@collabora.com>
Mon, 4 Sep 2017 16:08:15 +0000 (17:08 +0100)
committerEmil Velikov <emil.l.velikov@gmail.com>
Wed, 6 Sep 2017 16:48:50 +0000 (17:48 +0100)
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>
docs/releasing.html

index 0af05af31ae42658238281d7c95b8e8883cb966b..d74411532c81b456a323da4fdcf954df58f10ec7 100644 (file)
@@ -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 &amp;&amp; make -j2 distcheck
+       $__mesa_root/autogen.sh &amp;&amp; make distcheck
 
        # Build check the tarballs (scons, linux)
        tar -xaf mesa-$__version.tar.xz &amp;&amp; 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 &amp;&amp; DESTDIR=`pwd`/test make -j6 install
+       make &amp;&amp; DESTDIR=`pwd`/test make install
        __glxinfo_cmd='glxinfo 2>&amp;1 | egrep -o "Mesa.*|Gallium.*|.*dri\.so"'
        __glxgears_cmd='glxgears 2>&amp;1 | grep -v "configuration file"'
        __es2info_cmd='es2_info 2>&amp;1 | egrep "GL_VERSION|GL_RENDERER|.*dri\.so"'