diff options
author | Toni Uhlig <matzeton@googlemail.com> | 2022-09-02 13:01:51 +0200 |
---|---|---|
committer | Toni Uhlig <matzeton@googlemail.com> | 2022-09-02 13:01:51 +0200 |
commit | 422bfc5abd942cd78ed4cd8a592c290e46f1ab1f (patch) | |
tree | 42f321e48a5e8ede381c9afd7493afd60877605d /Makefile.deps | |
parent | 319a1b6ece6c7c88459a5aac900e4cdf2001d57a (diff) |
Support USER_LIBS for project Makefiles.
* source'able activate script uses runtime PATH variable instead of a hardcoded one
Signed-off-by: Toni Uhlig <matzeton@googlemail.com>
Diffstat (limited to 'Makefile.deps')
-rw-r--r-- | Makefile.deps | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile.deps b/Makefile.deps index e479b36..34cb146 100644 --- a/Makefile.deps +++ b/Makefile.deps @@ -65,7 +65,7 @@ ifeq ($(CC),$(LOCAL_MINGW64_CC)) @echo '#!/usr/bin/env bash' >$(ACTIVATE_SH) @echo >>$(ACTIVATE_SH) @echo 'MYDIR="$$(realpath $$(dirname $${BASH_SOURCE[0]}))"' >>$(ACTIVATE_SH) - @echo 'export PATH="$${MYDIR}/w64-mingw32-sysroot/x86_64/bin:$${MYDIR}/bin:${PATH}"' >>$(ACTIVATE_SH) + @echo 'export PATH="$${MYDIR}/w64-mingw32-sysroot/x86_64/bin:$${MYDIR}/bin:$${PATH}"' >>$(ACTIVATE_SH) @chmod +x $(ACTIVATE_SH) endif |