diff options
author | duane <duane@b42882b7-edfa-0310-969c-e2dbd0fdcd60> | 2008-12-27 16:31:28 +0000 |
---|---|---|
committer | duane <duane@b42882b7-edfa-0310-969c-e2dbd0fdcd60> | 2008-12-27 16:31:28 +0000 |
commit | abaa61adf7e63d7786397c6220e0168827a14c59 (patch) | |
tree | 2c199b9f91fcb9f38a720543ab57ea015d97e4d1 | |
parent | aae70f0a46e3e50f93627d11141325cfebd762f5 (diff) | |
download | openocd_libswd-abaa61adf7e63d7786397c6220e0168827a14c59.tar.gz openocd_libswd-abaa61adf7e63d7786397c6220e0168827a14c59.tar.bz2 openocd_libswd-abaa61adf7e63d7786397c6220e0168827a14c59.tar.xz openocd_libswd-abaa61adf7e63d7786397c6220e0168827a14c59.zip |
From Dirk Behme - another set of typos
git-svn-id: svn://svn.berlios.de/openocd/trunk@1285 b42882b7-edfa-0310-969c-e2dbd0fdcd60
-rw-r--r-- | configure.in | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/configure.in b/configure.in index 638a73f7..332551ee 100644 --- a/configure.in +++ b/configure.in @@ -55,8 +55,7 @@ then LDFLAGS="$LDFLAGS -L$OCDxprefix/lib" # RPATH becomes an issue on Linux only - if test $host_os = linux-gnu || $host_os = linux - then + if test $host_os = linux-gnu || test $host_os = linux ; then LDFLAGS="$LDFLAGS -Wl,-rpath,$OCDxprefix/lib" fi # The "INCDIR" is also usable @@ -500,7 +499,7 @@ if test $build_ft2232_ftd2xx = yes ; then AC_MSG_CHECKING([for libftd2xx.a (linux)]) # Must be linux - # Cause FTDICHIP does not supply a MAC-OS version - if test $host_os != linux-gnu && $host_os != linux ; then + if test $host_os != linux-gnu && test $host_os != linux ; then AC_MSG_ERROR([The (linux) ftd2xx library from FTDICHIP.com is linux only. Try --enable-ft2232-libftdi instead]) fi # Are we given a TAR directory? |