Skip to content

HTTPS clone URL

Subversion checkout URL

You can clone with
or
.
Clone in Desktop Download ZIP

Loading…

a few minor build fixes #7

Merged
merged 3 commits into from

1 participant

@garlick
Owner

No description provided.

garlick added some commits
@garlick garlick autoconf: Fix quoting in X_AC_CHECK_COND_LIB
Add missing quote around AC_LANG_PROGRAM invocation.

https://lists.gnu.org/archive/html/bug-autoconf/2011-04/msg00015.html

[from Mark Grondona in flux-core project]
6e00b53
@garlick garlick autoconf: add AM_SILENT_RULES f7f105d
@garlick garlick automake: enable serial-tests option
The test suite should be updated to use TAP; meanwhile, a quick fix.

Note that automake versions prior to 1.12 may have a problem
with this option.
18a3301
@garlick garlick merged commit 13cf154 into chaos:master
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Commits on Mar 17, 2015
  1. @garlick

    autoconf: Fix quoting in X_AC_CHECK_COND_LIB

    garlick authored
    Add missing quote around AC_LANG_PROGRAM invocation.
    
    https://lists.gnu.org/archive/html/bug-autoconf/2011-04/msg00015.html
    
    [from Mark Grondona in flux-core project]
  2. @garlick

    autoconf: add AM_SILENT_RULES

    garlick authored
  3. @garlick

    automake: enable serial-tests option

    garlick authored
    The test suite should be updated to use TAP; meanwhile, a quick fix.
    
    Note that automake versions prior to 1.12 may have a problem
    with this option.
This page is out of date. Refresh to see the latest.
Showing with 3 additions and 2 deletions.
  1. +1 −1  config/x_ac_check_cond_lib.m4
  2. +2 −1  configure.ac
View
2  config/x_ac_check_cond_lib.m4
@@ -25,7 +25,7 @@ AC_DEFUN([X_AC_CHECK_COND_LIB], [
[for $2 in default libs],
[x_ac_cv_lib_none_$2], [
AC_LINK_IFELSE(
- AC_LANG_CALL([], [$2]),
+ [AC_LANG_CALL([], [$2])],
AS_VAR_SET(x_ac_cv_lib_none_$2, yes),
AS_VAR_SET(x_ac_cv_lib_none_$2, no)
)]
View
3  configure.ac
@@ -12,7 +12,8 @@ X_AC_EXPAND_INSTALL_DIRS
##
# Automake support
##
-AM_INIT_AUTOMAKE([subdir-objects])
+AM_INIT_AUTOMAKE([subdir-objects serial-tests])
+AM_SILENT_RULES([yes])
AM_CONFIG_HEADER([config/config.h])
AM_MAINTAINER_MODE
Something went wrong with that request. Please try again.