star-build

Automation tool for project installation
git clone git://git.meso-star.fr/star-build.git
Log | Files | Refs | README | LICENSE

commit 3b7a0032f84b7ff4b72826d64e7024247e66e870
parent 21c2d690b080e3d62a5aeb882c1f9cf1eaab9011
Author: Vincent Forest <vincent.forest@meso-star.com>
Date:   Wed, 29 Nov 2023 09:03:32 +0100

Fix the template of the profile file

The CPATH variable was not correctly defined. It referred to the
project's library path instead of the include directory.

Diffstat:
Msrc/build.profile.in | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/build.profile.in b/src/build.profile.in @@ -6,7 +6,7 @@ # permitted in any medium without royalty provided the copyright notice and # this notice are preserved. This file is offered as-is, without any warranty. -export CPATH="@PREFIX@/lib:${CPATH}" +export CPATH="@PREFIX@/include:${CPATH}" export LD_LIBRARY_PATH="@PREFIX@/lib:${LD_LIBRARY_PATH}" export LIBRARY_PATH="@PREFIX@/lib:${LIBRARY_PATH}" export MANPATH="@PREFIX@/share/man:${MANPATH}"