Overview
Comment: | Fixed missing export |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: | 9467bd623b99f8598b727b80c4e78e87b0f88529 |
User & Date: | rkeene on 2012-07-14 23:30:25 |
Other Links: | manifest | tags |
Context
2012-07-19
| ||
05:25 | Updated to use newer mingw32 conventions check-in: ab3932ab3c user: rkeene tags: trunk | |
2012-07-14
| ||
23:30 | Fixed missing export check-in: 9467bd623b user: rkeene tags: trunk | |
23:29 | Added an LDFLAGS_ADD environment variable to add options to the end of the linking command line check-in: e8e77fe250 user: rkeene tags: trunk | |
Changes
Modified kitsh/build.sh from [462ca525a2] to [fdc26b1533].
20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 |
# Set configure options for this sub-project LDFLAGS_ADD="${KC_KITSH_LDFLAGS_ADD}" LDFLAGS="${KC_KITSH_LDFLAGS}" CFLAGS="${KC_KITSH_CFLAGS}" CPPFLAGS="${KC_KITSH_CPPFLAGS}" LIBS="${KC_KITSH_LIBS}" export LDFLAGS CFLAGS CPPFLAGS LIBS if [ -z "${ENABLECOMPRESSION}" ]; then ENABLECOMPRESSION="1" fi export ENABLECOMPRESSION rm -rf 'build' 'out' 'inst' |
| |
20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 |
# Set configure options for this sub-project
LDFLAGS_ADD="${KC_KITSH_LDFLAGS_ADD}"
LDFLAGS="${KC_KITSH_LDFLAGS}"
CFLAGS="${KC_KITSH_CFLAGS}"
CPPFLAGS="${KC_KITSH_CPPFLAGS}"
LIBS="${KC_KITSH_LIBS}"
export LDFLAGS_ADD LDFLAGS CFLAGS CPPFLAGS LIBS
if [ -z "${ENABLECOMPRESSION}" ]; then
ENABLECOMPRESSION="1"
fi
export ENABLECOMPRESSION
rm -rf 'build' 'out' 'inst'
|