~esys-p-dev/esys-particle/2.3.2

« back to all changes in this revision

Viewing changes to configure.ac

  • Committer: Vince Boros
  • Date: 2014-12-04 23:06:27 UTC
  • Revision ID: v.boros@uq.edu.au-20141204230627-xwozrc9x1ny3hsm0
Build file change to avoid an Automake 1.14 bug:
https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=752993

Downside: The change elicits Autmake 1.14 warnings.
Upside:   The change removes build errors.

Show diffs side-by-side

added added

removed removed

Lines of Context:
41
41
test "x$prefix" = "xNONE" && prefix=$ac_default_prefix
42
42
test "x$exec_prefix" = "xNONE" && exec_prefix=$prefix
43
43
 
44
 
AM_INIT_AUTOMAKE([subdir-objects])
 
44
# Automake 1.14 has a bug with the subdir-objects option: $(top_srcdir) in a
 
45
# Makefile.am _SOURCE entry will not expand, being treated instead as a 
 
46
# literal directory name, causing the ESyS-Particle build to fail.  For now, do not
 
47
# use the option.
 
48
AM_INIT_AUTOMAKE([])
45
49
#AM_PATH_CPPUNIT([1.10.0], ,[AC_MSG_ERROR([Dud CppUnit version found, must be >= 1.10.0.])])
46
50
AM_PATH_PYTHON([2.6])
47
51