Use the full path for DESTDIR when building Debian package.

This commit is contained in:
Kristofer Hallin 2024-10-21 15:32:52 +02:00 committed by Olof Hagsand
parent 3468adb20e
commit 7903a92d54

View file

@ -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."