diff options
author | Laurent Bercot <ska-skaware@skarnet.org> | 2016-08-12 16:07:54 +0000 |
---|---|---|
committer | Laurent Bercot <ska-skaware@skarnet.org> | 2016-08-12 16:07:54 +0000 |
commit | 47f03d87ad6d68e5e84dc013610c39747fd552b7 (patch) | |
tree | 84e47e847ded9cb7eeef5f215fd5246f849ae6f7 /configure | |
parent | 2ed743528fbb9d4f39802cdf51d16dadf980d1a7 (diff) | |
download | skalibs-47f03d87ad6d68e5e84dc013610c39747fd552b7.tar.xz |
Redirections are hard for the BSD shells
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -420,11 +420,11 @@ EOF util_lib= echo > $sysdeps/util.lib - socket_lib=`trylibs lsock 'accessible socket functions' -lsocket -lnsl` 3>&1 || fail "$0: unable to determine socket.lib sysdep" + 3>&1 socket_lib=`trylibs lsock 'accessible socket functions' -lsocket -lnsl` || fail "$0: unable to determine socket.lib sysdep" echo "$socket_lib" > $sysdeps/socket.lib hasclock=true - clock_lib=`trylibs clockrt 'clock_gettime()' -lrt` 3>&1 || hasclock=false + 3>&1 clock_lib=`trylibs clockrt 'clock_gettime()' -lrt` || hasclock=false if $clockrt ; then echo "$clock_lib" > $sysdeps/sysclock.lib echo "$clock_lib" > $sysdeps/tainnow.lib @@ -446,7 +446,7 @@ EOF fi hasspawn=true - spawn_lib=`trylibs posixspawn 'posix_spawn()' -lrt` 3>&1 || hasspawn=false + 3>&1 spawn_lib=`trylibs posixspawn 'posix_spawn()' -lrt` || hasspawn=false echo "$spawn_lib" > $sysdeps/spawn.lib if $hasspawn ; then echo 'posixspawn: yes' >> $sysdeps/sysdeps |