From 788857eccbbf8446dedd6a5fa1a3b6405d36af49 Mon Sep 17 00:00:00 2001 From: Stoiko Ivanov Date: Tue, 19 Jan 2021 11:38:11 +0100 Subject: [PATCH] buildsys: fix PERLLIB setting in tests/Makefile Make variables don't need quoting - and with quotes the PERLLIB is literally set to ".." instead of .. (only the latter works) Signed-off-by: Stoiko Ivanov --- src/tests/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/tests/Makefile b/src/tests/Makefile index 84075c4..79310b3 100644 --- a/src/tests/Makefile +++ b/src/tests/Makefile @@ -1,6 +1,6 @@ #export TESTDB = "Proxmox_testdb" -export PERLIB = ".." +export PERLLIB = .. all: -- 2.39.2