]> git.ipfire.org Git - thirdparty/dbus.git/commitdiff
Do not suggest user the next step after executed autogen.sh
authorChengwei Yang <chengwei.yang@intel.com>
Tue, 24 Sep 2013 13:25:01 +0000 (21:25 +0800)
committerSimon McVittie <simon.mcvittie@collabora.co.uk>
Tue, 8 Oct 2013 10:06:19 +0000 (11:06 +0100)
We assume that user/developer who building dbus from source code are
familiar with the standard 'autogen.sh, configure, make, make install'
build process, so print such a notice doesn't make a lot of sense.

In addition, on *BSD platform, the pre-installed 'make' doesn't work at
all since gnu make is required. However, it named to 'gmake' on *BSD
platform. So the notice will makes new comer confused.

Bug: https://bugs.freedesktop.org/show_bug.cgi?id=65415
Reviewed-by: Simon McVittie <simon.mcvittie@collabora.co.uk>
autogen.sh

index b9046879cd79c60603eeb6d3557e961c5e2f7281..bff8257b4c9b72f87cabe62442de3c669932184f 100755 (executable)
@@ -101,11 +101,5 @@ else
 fi
 
 if $run_configure; then
-    $srcdir/configure --enable-developer --config-cache "$@" || exit $?
-    echo 
-    echo "Now type 'make' to compile $PROJECT."
-else
-    echo
-    echo "Now run 'configure' and 'make' to compile $PROJECT."
+    $srcdir/configure --enable-developer --config-cache "$@"
 fi
-