We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2634e63 commit b899dbeCopy full SHA for b899dbe
configure.ac
@@ -263,7 +263,8 @@ if test $system = MacOSX; then
263
dyl_ver=$($DYLIBBUNDLER -V >/dev/null 2>&1 && dylibbundler -V | cut -d\ -f2 || echo unknown)
264
AC_MSG_RESULT($dyl_ver);
265
266
- if test "x$dyl_ver" = xunknown || expr "$dyl_ver" \<= 2 >/dev/null; then
+ if test "x$dyl_ver" = xunknown || test "${dyl_ver%%.*}" -eq 1
267
+ then
268
UG_MSG_WARN([Original dylib bundler detected, recommending v2 instead (https://github.com/SCG82/macdylibbundler)])
269
else
270
DYLIBBUNDLER="$DYLIBBUNDLER -f" # bundle also frameworks
0 commit comments