changeset: 79761:d282018bff10 parent: 79754:267d6d032652 parent: 79760:85863c4a93db user: Trent Nelson date: Tue Oct 16 11:09:31 2012 -0400 files: configure configure.ac description: Merge issue #15819: tweak logic in previous commit. diff -r 267d6d032652 -r d282018bff10 configure --- a/configure Tue Oct 16 23:14:38 2012 +1000 +++ b/configure Tue Oct 16 11:09:31 2012 -0400 @@ -2724,7 +2724,7 @@ BUILDDIR="`pwd`" -if test "$srcdir" != "$BUILDDIR"; then +if test "$srcdir" != "." -a "$srcdir" != "$BUILDDIR"; then # If we're building out-of-tree, we need to make sure the following # resources get picked up before their $srcdir counterparts. # Objects/ -> typeslots.inc diff -r 267d6d032652 -r d282018bff10 configure.ac --- a/configure.ac Tue Oct 16 23:14:38 2012 +1000 +++ b/configure.ac Tue Oct 16 11:09:31 2012 -0400 @@ -12,7 +12,7 @@ BUILDDIR="`pwd`" AC_SUBST(BUILDDIR) AC_SUBST(BASECPPFLAGS) -if test "$srcdir" != "$BUILDDIR"; then +if test "$srcdir" != "." -a "$srcdir" != "$BUILDDIR"; then # If we're building out-of-tree, we need to make sure the following # resources get picked up before their $srcdir counterparts. # Objects/ -> typeslots.inc