From b6814841e7d83076ac38d4e7cf26d478f82860b1 Mon Sep 17 00:00:00 2001 From: Dylan Araps Date: Mon, 9 Mar 2026 12:56:22 +0200 Subject: configure: use system dpp if possible --- configure | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/configure b/configure index de62417..7d8079b 100755 --- a/configure +++ b/configure @@ -25,9 +25,10 @@ export c_version=c99 # # DPP configuration. # -export PATH="$PWD/bin:$PATH" export CFG_DPP_INCLUDE=./configure -export CFG_DPP_CMD=bin/dpp +CFG_DPP_CMD="$(command -v dpp 2>/dev/null || echo bin/dpp)" +export CFG_DPP_CMD +export PATH="$PWD/bin:$PATH" # # Make configuration. -- cgit v1.2.3