From 7903a92d541c8a7c8df5370d137cec18da7251e1 Mon Sep 17 00:00:00 2001 From: Kristofer Hallin Date: Mon, 21 Oct 2024 15:32:52 +0200 Subject: [PATCH] Use the full path for DESTDIR when building Debian package. --- scripts/build_deb.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/build_deb.sh b/scripts/build_deb.sh index 466a9a36..6b0a1b41 100755 --- a/scripts/build_deb.sh +++ b/scripts/build_deb.sh @@ -40,7 +40,7 @@ if [ $? -ne 0 ]; then fi # Build Clixon and install it to the build/ directory -./configure && make clean && make && make install DESTDIR=build/ +./configure && make clean && make && make install DESTDIR=`pwd`/build/ if [ $? -ne 0 ]; then echo "Failed to build Clixon."