Overview
Comment: | Updated Win32 build script to use relative paths |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
f238396b293ecce69c3842a42ac83d83 |
User & Date: | rkeene on 2010-10-15 17:56:55 |
Other Links: | manifest | tags |
Context
2010-10-20
| ||
22:22 | Added missing libz.a check-in: 81d58547cf user: rkeene tags: trunk | |
2010-10-15
| ||
17:56 | Updated Win32 build script to use relative paths check-in: f238396b29 user: rkeene tags: trunk | |
10:27 |
Fixed issue with win32 build script
Updated ignores check-in: 81e42b32af user: rkeene tags: trunk | |
Changes
Modified build/cackey_win32_build/build.sh from [e69c404fb2] to [716f40add4].
1 2 3 4 | #! /bin/bash make distclean | | | 1 2 3 4 5 6 7 8 9 | #! /bin/bash make distclean ./configure --with-pcsc-headers="$(pwd)/build/cackey_win32_build/include" --with-pcsc-libs="-L$(pwd)/build/cackey_win32_build/lib -lwinscard" --host=i586-mingw32msvc CPPFLAGS="-I$(pwd)/build/cackey_win32_build/include" || exit 1 make || exit 1 exit 0 |