Opened 4 years ago
#12201 new Bug report
Unportable test(1) operator
Reported by: | Thomas Klausner | Owned by: | |
---|---|---|---|
Priority: | normal | Component: | FileZilla Client |
Keywords: | Cc: | ||
Component version: | Operating system type: | Other | |
Operating system version: |
Description
The configure script uses the unportable test(1) '==' operator for comparison. POSIX specifies '=' and most shells (and test(1) from GNU coreutils) only support '='.
Please replace
if test "$use_mac_sandbox" == "yes"; then
with
if test "$use_mac_sandbox" = "yes"; then
Note:
See TracTickets
for help on using tickets.