diff options
author | Jon TURNEY <jon.turney@dronecode.org.uk> | 2010-07-24 12:06:23 +0100 |
---|---|---|
committer | Brian Paul <brianp@vmware.com> | 2010-09-01 08:48:02 -0600 |
commit | 36b195332fffdba6f596750266dc4a805d046b89 (patch) | |
tree | 044e9d24aa9045fb9b9d0fccd66a4b1aa8045110 /bin | |
parent | 8fee182e8c65625677c10137e12775db63e909a2 (diff) |
Cygwin: Change mklib not to report the full archname on cygwin
Change mklib not to report the full archname when building a library for cygwin
(which is something like 'CYGWIN_NT-5.1' or 'CYGWIN_NT-6.1-WOW64' and kind of
confusing), but just 'CYGWIN'.
Signed-off-by: Jon TURNEY <jon.turney@dronecode.org.uk>
Signed-off-by: Brian Paul <brianp@vmware.com>
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/mklib | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -946,7 +946,7 @@ case $ARCH in if [ $STATIC = 1 ] ; then LIBNAME=${LIBNAME}.a - echo "mklib: Making" $ARCH "static library: " ${LIBNAME} + echo "mklib: Making CYGWIN static library: " ${LIBNAME} OPTS="-ru" if [ "${ALTOPTS}" ] ; then OPTS=${ALTOPTS} @@ -964,7 +964,7 @@ case $ARCH in if [ "${ALTOPTS}" ] ; then OPTS=${ALTOPTS} fi - echo "mklib: Making" $ARCH "shared library: " ${CYGNAME}-${MAJOR}.dll + echo "mklib: Making CYGWIN shared library: " ${CYGNAME}-${MAJOR}.dll if [ $CPLUSPLUS = 1 ] ; then LINK="g++" |