From 23c618ab519d9e7b9760b5a457845a09559d7589 Mon Sep 17 00:00:00 2001 From: George Bosilca Date: Tue, 6 Dec 2005 05:26:36 +0000 Subject: [PATCH] Allow a VPATH build to find the include files. This commit was SVN r8382. --- opal/mca/memory/ptmalloc2/Makefile.am | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/opal/mca/memory/ptmalloc2/Makefile.am b/opal/mca/memory/ptmalloc2/Makefile.am index 0e0e95f28a..d106d1fa18 100644 --- a/opal/mca/memory/ptmalloc2/Makefile.am +++ b/opal/mca/memory/ptmalloc2/Makefile.am @@ -22,13 +22,13 @@ AM_CPPFLAGS = -DMALLOC_DEBUG=0 if OMPI_HAVE_POSIX_THREADS AM_CPPFLAGS += -DUSE_TSD_DATA_HACK \ - -Isysdeps/pthread + -I$(srcdir)/sysdeps/pthread endif if OMPI_HAVE_SOLARIS_THREADS -AM_CPPFLAGS += -Isysdeps/solaris +AM_CPPFLAGS += -I$(srcdir)/sysdeps/solaris endif # this must come *after* the threads -Is -AM_CPPFLAGS += -Isysdeps/generic +AM_CPPFLAGS += -I$(srcdir)/sysdeps/generic # ptmalloc requires us to include the copyright notice in the # software. So install it in the same place that we install ROMIO's