Opened 15 years ago

Closed 15 years ago

#364 closed enhancement (fixed)

propagate configure arguments to DISTCHECK_CONFIGURE_FLAGS

Reported by: Peter Johansson Owned by: Peter Johansson
Priority: trivial Milestone: svndigest 0.7
Component: build Version: trunk
Keywords: Cc:

Description

Consider following snippet in configure.ac:

for var in CC CFLAGS  CPPFLAGS CXX CXXCPP LDFLAGS LIBS ; do
  eval isset=\${$var+set}
  if test "$isset" = 'set' ; then
    eval val=$`echo $var`
    DISTCHECK_CONFIGURE_FLAGS="${DISTCHECK_CONFIGURE_FLAGS}'${var}=${val}' "
  fi
done
AC_SUBST(DISTCHECK_CONFIGURE_FLAGS) 

Change History (2)

comment:1 Changed 15 years ago by Peter Johansson

Milestone: svndigest 0.x+svndigest 0.7
Status: newassigned

comment:2 Changed 15 years ago by Peter Johansson

Resolution: fixed
Status: assignedclosed

(In [741]) fixes #364: propagate selected configure options to DISTCHECK_CONFIGURE_FLAGS

Note: See TracTickets for help on using tickets.