diff options
author | Mike Blumenkrantz <zmike@osg.samsung.com> | 2017-07-04 11:49:37 -0400 |
---|---|---|
committer | Mike Blumenkrantz <zmike@osg.samsung.com> | 2017-07-04 11:49:57 -0400 |
commit | 63233680c76bc7db0de4fac058581c18e2694a88 (patch) | |
tree | 3a1854c93f9a7a7230e063a28188d0e6a5f2366a | |
parent | 52fdb5e830e02ad19b9418be3bb35ea1bd0ed5c0 (diff) |
Revert "build: enable examples build by default"
This reverts commit b58629bbbef3d811700b016eb9fa97e2af71e1a1.
not needed
-rw-r--r-- | Makefile.am | 3 | ||||
-rw-r--r-- | configure.ac | 4 |
2 files changed, 4 insertions, 3 deletions
diff --git a/Makefile.am b/Makefile.am index 591cf998c6..a818b4e353 100644 --- a/Makefile.am +++ b/Makefile.am @@ -2,7 +2,8 @@ ACLOCAL_AMFLAGS = -I m4 AM_MAKEFLAGS = --no-print-directory AM_DISTCHECK_CONFIGURE_FLAGS = \ --with-tests=regular \ ---with-systemdunitdir=. +--with-systemdunitdir=. \ +--enable-always-build-examples SUBDIRS = src data config doc diff --git a/configure.ac b/configure.ac index 2efd94dec3..72c4d6c78b 100644 --- a/configure.ac +++ b/configure.ac @@ -5226,7 +5226,7 @@ if test "x${want_tests}" = "xyes" -a "x${want_wayland}" = "xyes"; then fi AC_ARG_ENABLE([always-build-examples], - [AS_HELP_STRING([--enable-always-build-examples],[always build examples. @<:@default=enabled@:>@])], + [AS_HELP_STRING([--enable-always-build-examples],[always build examples. @<:@default=disabled@:>@])], [ if test "x${enableval}" = "xyes" ; then want_always_build_examples="yes" @@ -5234,7 +5234,7 @@ AC_ARG_ENABLE([always-build-examples], want_always_build_examples="no" fi ], - [want_always_build_examples="yes"]) + [want_always_build_examples="no"]) AM_CONDITIONAL([ALWAYS_BUILD_EXAMPLES], [test "${want_always_build_examples}" = "yes"]) BARF_OK="xno" |