1
0
mirror of https://git.openwrt.org/feed/packages.git synced 2024-06-14 11:23:57 +02:00

ccid: fix compilation under macOS

Remove a bad uname check.

Signed-off-by: Rosen Penev <rosenp@gmail.com>
(cherry picked from commit 7a7d1a5d2c)
This commit is contained in:
Rosen Penev 2021-10-04 16:04:17 -07:00 committed by Daniel Golle
parent 920608fdc9
commit 7ee645cba7
No known key found for this signature in database
GPG Key ID: 5A8F39C31C3217CA

View File

@ -0,0 +1,11 @@
--- a/configure.ac
+++ b/configure.ac
@@ -79,7 +79,7 @@ AC_CHECK_FUNCS(select strerror strncpy m
# Select OS specific versions of source files.
AC_SUBST(BUNDLE_HOST)
AC_SUBST(DYN_LIB_EXT)
-BUNDLE_HOST=`uname | sed -e s,/,_,`
+BUNDLE_HOST=Linux
DYN_LIB_EXT="so"
case "$BUNDLE_HOST" in
Darwin)