summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMarkus Heidelberg <m.heidelberg@cab.de>2024-03-11 14:45:51 +0100
committerMichael Olbrich <m.olbrich@pengutronix.de>2024-03-15 11:01:18 +0100
commit3a5a24daa17f1979ca47643382fb633fd520e8f5 (patch)
tree363190602c827d9a7ed6b5103627af1e11542cc2
parent2dd8696c067ca5a90122746e5109a3291ed5805d (diff)
downloadptxdist-3a5a24daa17f1979ca47643382fb633fd520e8f5.tar.gz
ptxdist-3a5a24daa17f1979ca47643382fb633fd520e8f5.tar.xz
configure.ac: fix check for unzip
Instead of unzip, gunzip was checked actually: checking for gunzip... /usr/bin/gunzip Now it is checked properly: checking for unzip... /usr/bin/unzip There are only seven packages using .zip format for download, though. Signed-off-by: Markus Heidelberg <m.heidelberg@cab.de> Message-Id: <20240311134552.608327-2-m.heidelberg@cab.de> Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
-rw-r--r--configure.ac2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac
index 2499b06fc..dfce4330e 100644
--- a/configure.ac
+++ b/configure.ac
@@ -238,7 +238,7 @@ if test -z "$GUNZIP"; then
fi
dnl Check for unzip
-AC_PATH_PROGS(UNZIP, gunzip,, $PATH)
+AC_PATH_PROGS(UNZIP, unzip,, $PATH)
if test -z "$UNZIP"; then
AC_MSG_ERROR([unzip could not be found, please install])
fi