[Genabel-commits] r1261 - pkg/ProbABEL

noreply at r-forge.r-project.org noreply at r-forge.r-project.org
Sun Jun 30 20:00:03 CEST 2013


Author: lckarssen
Date: 2013-06-30 20:00:02 +0200 (Sun, 30 Jun 2013)
New Revision: 1261

Modified:
   pkg/ProbABEL/configure.ac
Log:
In ProbABEL's configure.ac file: fix a small bug in that prevented ProbABEL from being built when a non-default setting for --eigen-include-path was given. The option for the CPPFLAGS was not set. 


Modified: pkg/ProbABEL/configure.ac
===================================================================
--- pkg/ProbABEL/configure.ac	2013-06-30 15:02:23 UTC (rev 1260)
+++ pkg/ProbABEL/configure.ac	2013-06-30 18:00:02 UTC (rev 1261)
@@ -59,7 +59,8 @@
     AC_ARG_WITH([eigen-include-path],
         [AS_HELP_STRING([--with-eigen-include-path],
           [location of the Eigen headers, defaults to /usr/include/eigen3])],
-        [CXXFLAGS+=" -I${withval}"],
+        [CXXFLAGS+=" -I${withval}"
+        CPPFLAGS+=" -I${withval}"],
         [CXXFLAGS+=' -I/usr/include/eigen3'
         CPPFLAGS+=' -I/usr/include/eigen3'])
 



More information about the Genabel-commits mailing list