Differences From Artifact [7f1f41f856]:
- Executable file build/cackey_osx_build/build_osx.sh — part of check-in [003e5de0f0] at 2012-07-30 16:02:51 on branch trunk — Updated email address in CACKey for OSX Build Script (user: kvanals, size: 9749) [annotate] [blame] [check-ins using]
To Artifact [c66d1aadeb]:
- Executable file build/cackey_osx_build/build_osx.sh — part of check-in [f42b92cf98] at 2013-01-16 15:46:00 on branch piv — Updated macbuild contact information to have valid government email addresses to contact us. (user: kvanals, size: 9734) [annotate] [blame] [check-ins using] [more...]
1 2 3 4 5 6 7 8 9 10 11 |
#!/bin/bash
# Shell Script to make Mac OS X Releases of CACKey
# Kenneth Van Alstyne
# kenneth.vanalstyne@associates.hq.dhs.gov
CACKEY_VERSION=`cat configure.ac | grep AC_INIT | cut -d " " -f 2 | sed 's_)__'`
# Check to see if we're building on Mac OS X 10.7 "Lion"
if [ "`uname -r | cut -d . -f 1`" = "11" ]; then
LIONBUILD=1
fi
|
| |
1 2 3 4 5 6 7 8 9 10 11 |
#!/bin/bash
# Shell Script to make Mac OS X Releases of CACKey
# Kenneth Van Alstyne
# DC1SAN_SUPPORT@hq.dhs.gov
CACKEY_VERSION=`cat configure.ac | grep AC_INIT | cut -d " " -f 2 | sed 's_)__'`
# Check to see if we're building on Mac OS X 10.7 "Lion"
if [ "`uname -r | cut -d . -f 1`" = "11" ]; then
LIONBUILD=1
fi
|