From: Bastian Dehn Date: Sat, 26 Sep 2026 10:28:18 +0000 (+0200) Subject: add production lib path X-Git-Tag: v1.0.0^2~1^2~8 X-Git-Url: https://gitweb.hhaalo.de/?a=commitdiff_plain;h=f984a1ad389ec0f6f3588e6680bd3a2302f15f92;p=albentohandy.git add production lib path --- diff --git a/Makefile b/Makefile index 663672e..5a3586b 100644 --- a/Makefile +++ b/Makefile @@ -31,7 +31,7 @@ clean: $(BUILDDIR)/$(PACKAGE)/$(BINDIR)/albentohandy: mkdir --parents $(@D) - cp $(SRCDIR)/albentohandy $(@) + sed 's/# LIB_PATH/LIB_PATH/' $(SRCDIR)/albentohandy > $(@) shellcheck $(@) $(BUILDDIR)/$(PACKAGE)/$(LIBDIR)/vorbis.sh: diff --git a/src/albentohandy b/src/albentohandy index a33788c..82da219 100755 --- a/src/albentohandy +++ b/src/albentohandy @@ -52,6 +52,7 @@ load_config() || errlog "directory $MUSIC_PATH does not exists" \ || return $? MUSIC_PATH=$(realpath "$MUSIC_PATH") + # LIB_PATH="/usr/lib/albentohandy" LIB_PATH=${LIB_PATH:-"$scriptpath/lib"} OUTPUT_PATH=${OUTPUT_PATH:-"work.$$"} }