Hi Marius,

    Makefile.am:86: warning: pkglibdir was already defined in condition
    TRUE, which includes condition USE_VERSION_LINKS ...

All I can think of to do is introduce a new variable in each branch, and
define the "built-in" variables outside the conditional.  Unfortunately
this means reproducing Automake's defaults, as far as I can see.  As in
this for Makefile.am (and minimal configure.ac below):

if USE_VERSION_LINKS
mypkglibdir = $(versiondir)$(libdir)/ganeti
else
mypkglibdir = $(libdir)/@PACKAGE@
endif
pkglibdir = $(mypkglibdir)

I suspect there is a cleaner way, but I don't have the brains to see
what it is. I hope someone else here does ... --best, karl.

--- configure.ac ---
AC_INIT([amin], [0.0], [nowh...@example.net])
AM_INIT_AUTOMAKE([foreign])
AM_CONDITIONAL([USE_VERSION_LINKS], [false])
AC_CONFIG_FILES([Makefile])
AC_OUTPUT

Reply via email to