aboutsummaryrefslogtreecommitdiff
path: root/bootstrap
diff options
context:
space:
mode:
authorPaul Fertser <fercerpav@gmail.com>2013-07-06 09:12:45 +0400
committerSpencer Oliver <spen@spen-soft.co.uk>2013-07-15 10:13:51 +0000
commitab90b8777855876f23c779ee2b25827a34f890c3 (patch)
treed3da2559ab026a75fee9a813fe4bf245bbd28929 /bootstrap
parent4501e6002fea79ed3deba6dc77d88a4fda97437d (diff)
downloadriscv-openocd-ab90b8777855876f23c779ee2b25827a34f890c3.zip
riscv-openocd-ab90b8777855876f23c779ee2b25827a34f890c3.tar.gz
riscv-openocd-ab90b8777855876f23c779ee2b25827a34f890c3.tar.bz2
configure: remove AM_MAINTAINER_MODE, effectively always enabling all the rules
There're strong arguments against using this macro (mostly regarding build consistency), so remove it altogether. Change-Id: I90c8e9a86a24571019366435bd868a6799a09c45 Signed-off-by: Paul Fertser <fercerpav@gmail.com> Reviewed-on: http://openocd.zylin.com/1476 Tested-by: jenkins Reviewed-by: Spencer Oliver <spen@spen-soft.co.uk> Reviewed-by: Andreas Fritiofson <andreas.fritiofson@gmail.com>
Diffstat (limited to 'bootstrap')
-rwxr-xr-xbootstrap6
1 files changed, 1 insertions, 5 deletions
diff --git a/bootstrap b/bootstrap
index 8a3945e..3b60fc6 100755
--- a/bootstrap
+++ b/bootstrap
@@ -31,10 +31,6 @@ autoheader
automake --gnu --add-missing --copy
)
-# AM_MAINTAINER_MODE requires --enable-maintainer-mode from everyone using
-# current source snapshots (working from GIT, or some source snapshot, etc)
-# otherwise the documentation will fail to build due to missing version.texi
-
if [ -n "$SKIP_SUBMODULE" ]; then
echo "Skipping submodule setup"
else
@@ -44,4 +40,4 @@ else
fi
echo "Bootstrap complete. Quick build instructions:"
-echo "./configure --enable-maintainer-mode ...."
+echo "./configure ...."