Alright. Here is a fix to the previous change. I was initializing the list with the shared library, not the static one.
Chris On Wed, Feb 5, 2014 at 11:13 AM, Chris Morgan <[email protected]> wrote: > Yeah there must be a typo in there. I can send an updated original > patch or a fix to the existing one. Should have it fixed in a minute. > > Chris > > > On Wed, Feb 5, 2014 at 11:12 AM, Thomas Jarosch > <[email protected]> wrote: >> >> Zitat von Chris Morgan <[email protected]>: >> >> >>> Did you end up making any changes to it? Let me test it here right now >>> before you ship anything, if thats possible. >> >> >> I've applied it "as is". Feel free to test it if you want though >> the change was too minor to mention it in ChangeLog. >> >> >> Thomas >> >> >> -- >> libftdi - see http://www.intra2net.com/en/developer/libftdi for details. >> To unsubscribe send a mail to [email protected] -- libftdi - see http://www.intra2net.com/en/developer/libftdi for details. To unsubscribe send a mail to [email protected]
From d91be0ca90fdcd4773b9226b6fadc85b2f33dca5 Mon Sep 17 00:00:00 2001 From: Chris Morgan <[email protected]> Date: Wed, 5 Feb 2014 11:19:31 -0500 Subject: [PATCH] Correct incorrect initial value for LIBFTDI_STATIC_LIBRARIES, should start with LIBFTDI_STATIC_LIBRARY not LIBFTDI_LIBRARY --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 49e23bc..e8688d4 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -187,7 +187,7 @@ set ( LIBFTDI_LIBRARY ftdi1 ) set ( LIBFTDI_LIBRARIES ${LIBFTDI_LIBRARY} ) list ( APPEND LIBFTDI_LIBRARIES ${LIBUSB_LIBRARIES} ) set ( LIBFTDI_STATIC_LIBRARY ftdi1.a ) -set ( LIBFTDI_STATIC_LIBRARIES ${LIBFTDI_LIBRARY} ) +set ( LIBFTDI_STATIC_LIBRARIES ${LIBFTDI_STATIC_LIBRARY} ) list ( APPEND LIBFTDI_STATIC_LIBRARIES ${LIBUSB_LIBRARIES} ) if (FTDI_BUILD_CPP) set ( LIBFTDIPP_LIBRARY ftdi1pp ) -- 1.8.3.1
