Hi, I am looking at the program FORCE[1], which has no configure script, just a Makefile, so I am currently using ConfigureMake and skipping the configure step.
In the Makefile there is the following: # Installation directory BINDIR=/home/loris/local/bin # Libraries GDAL=-I/usr/include/gdal -L/usr/lib -Wl,-rpath=/usr/lib GSL=-I/usr/include/gsl -L/usr/lib/x86_64-linux-gnu -Wl,-rpath=/usr/lib/x86_64-linux-gnu -DHAVE_INLINE=1 -DGSL_RANGE_CHECK=0 CURL=-I/usr/include/curl -L/usr/lib/x86_64-linux-gnu -Wl,-rpath=/usr/lib/x86_64-linux-gnu -I/usr/include/x86_64-linux-gnu/curl -L/usr/lib/x86_64-linux-gnu -Wl,-rpath=/usr/lib/x86_64-linux-gnu OPENCV=-I/usr/local/include/opencv4 -L/usr/local/lib -Wl,-rpath=/usr/local/lib Is there any easy way to handle such hardcoded paths within the EasyConfig? Cheers, Loris Footnotes: [1] https://github.com/davidfrantz/force -- Dr. Loris Bennett (Herr/Mr) ZEDAT, Freie Universität Berlin Email [email protected]

