Skip to content

Commit

Permalink
configure: make openSUSE enabled by default
Browse files Browse the repository at this point in the history
Because we want to able to run:

./autogen && ./configure && make dist

When openSUSE is disable we have to run

./autogen && ./configure --with-opensuse-support && make dist

Related to #181

Signed-off-by: Jakub Filak <jfilak@redhat.com>
  • Loading branch information
Jakub Filak committed Oct 3, 2013
1 parent bdd9b97 commit fa24593
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -227,8 +227,8 @@ fi dnl end NO_UREPORT
AC_SUBST([JSON_C_PACKAGE])

AC_ARG_WITH(opensuse_support,
AS_HELP_STRING([--with-opensuse-support],[build openSUSE specific features (default is NO)]),
[], [with_opensuse_support=no])
AS_HELP_STRING([--with-opensuse-support],[build openSUSE specific features (default is YES)]),
[], [with_opensuse_support=yes])
if test "x$with_opensuse_support" = xyes; then
AM_CONDITIONAL(OPENSUSE_SUPPORT, true)
# enable SUSE & deps translations
Expand Down

0 comments on commit fa24593

Please sign in to comment.