dep

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

commit 9dbe2c817f0b20e721d21d83c6e0fda8a58937e9
parent 1714ed94575ec320f5a26bc4cb606eed189c2218
Author: finwo <finwo@pm.me>
Date:   Wed, 18 Oct 2023 21:45:46 +0200

Back to relpaths again, no need to stay compatible with symlinks

Diffstat:
Mdist/dep | 4++--
Msrc/command/install/index.sh | 4++--
2 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/dist/dep b/dist/dep @@ -266,7 +266,7 @@ cmds[${#cmds[*]}]="i" cmds[${#cmds[*]}]="install" CMD_INSTALL_PKG_NAME= -CMD_INSTALL_PKG_DEST="$(pwd)/lib" +CMD_INSTALL_PKG_DEST="lib" declare -A CMD_INSTALL_DEPS function cmd_install_parse_ini_main { case "$1" in @@ -276,7 +276,7 @@ function cmd_install_parse_ini_main { CMD_INSTALL_PKG_NAME="$3" ;; deps) - CMD_INSTALL_PKG_DEST="$(pwd)/$3" + CMD_INSTALL_PKG_DEST="$3" ;; esac ;; diff --git a/src/command/install/index.sh b/src/command/install/index.sh @@ -34,7 +34,7 @@ cmds[${#cmds[*]}]="i" cmds[${#cmds[*]}]="install" CMD_INSTALL_PKG_NAME= -CMD_INSTALL_PKG_DEST="$(pwd)/lib" +CMD_INSTALL_PKG_DEST="lib" declare -A CMD_INSTALL_DEPS function cmd_install_parse_ini_main { case "$1" in @@ -44,7 +44,7 @@ function cmd_install_parse_ini_main { CMD_INSTALL_PKG_NAME="$3" ;; deps) - CMD_INSTALL_PKG_DEST="$(pwd)/$3" + CMD_INSTALL_PKG_DEST="$3" ;; esac ;;