diff options
author | Christian Beier <dontmind@freeshell.org> | 2015-04-15 10:42:28 +0200 |
---|---|---|
committer | Christian Beier <dontmind@freeshell.org> | 2015-04-15 10:42:28 +0200 |
commit | e9302ef7ac697b28ce2b3809e26ccce131969833 (patch) | |
tree | bec567eb15ae406d89a9f6ce79da6f3d65ab6821 | |
parent | 344264da2facfd2ffba4e2f567be6d2c14b6d63b (diff) | |
parent | 2dc984dcaa28fd4df90fe011a58fd8fe329bc7a1 (diff) | |
download | libtdevnc-e9302ef7ac697b28ce2b3809e26ccce131969833.tar.gz libtdevnc-e9302ef7ac697b28ce2b3809e26ccce131969833.zip |
Merge pull request #74 from tanderson92/fixarpath
configure.ac: Use AC_CHECK_TOOL for cross-compiling support.
-rw-r--r-- | configure.ac | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac index bcf5128..3069eed 100644 --- a/configure.ac +++ b/configure.ac @@ -24,7 +24,7 @@ test "x$GCC" = "xyes" && CFLAGS="$CFLAGS -Wall" AC_PROG_MAKE_SET AC_LIBTOOL_WIN32_DLL AC_PROG_LIBTOOL -AC_PATH_PROG([AR], [ar], [/usr/bin/ar], +AC_CHECK_TOOL([AR], [ar], [/usr/bin/ar], [$PATH:/usr/ccs/bin]) # Options |