dep

Package manager for embedded C libraries
git clone git://git.finwo.net/app/dep
Log | Files | Refs | README | LICENSE

commit bb9a49275ab0cbe392577c1a694ce03aec639d13
parent 9dbe2c817f0b20e721d21d83c6e0fda8a58937e9
Author: finwo <finwo@pm.me>
Date:   Tue, 31 Oct 2023 01:01:28 +0100

Remove space in include path in generated config.mk

Diffstat:
Msrc/command/install/index.sh | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/command/install/index.sh b/src/command/install/index.sh @@ -64,7 +64,7 @@ function cmd_install_execute { function cmd_install_reset_generated { rm -rf "${CMD_INSTALL_PKG_DEST}/.__NAME" mkdir -p "${CMD_INSTALL_PKG_DEST}/.__NAME/include" - echo "INCLUDES+=-I ${CMD_INSTALL_PKG_DEST}/.__NAME/include" > "${CMD_INSTALL_PKG_DEST}/.__NAME/config.mk" + echo "INCLUDES+=-I${CMD_INSTALL_PKG_DEST}/.__NAME/include" > "${CMD_INSTALL_PKG_DEST}/.__NAME/config.mk" echo "" > "${CMD_INSTALL_PKG_DEST}/.__NAME/exported" }