From f984a1ad389ec0f6f3588e6680bd3a2302f15f92 Mon Sep 17 00:00:00 2001 From: Bastian Dehn Date: Sat, 26 Sep 2026 12:28:18 +0200 Subject: [PATCH] add production lib path --- Makefile | 2 +- src/albentohandy | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) 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.$$"} } -- 2.47.3