From: Jon TURNEY Date: Sat, 24 Jul 2010 11:06:23 +0000 (+0100) Subject: Cygwin: Change mklib not to report the full archname on cygwin X-Git-Tag: 062012170305~10017 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=36b195332fffdba6f596750266dc4a805d046b89;p=profile%2Fivi%2Fmesa.git 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 Signed-off-by: Brian Paul --- diff --git a/bin/mklib b/bin/mklib index e2b854f..5478ef7 100755 --- a/bin/mklib +++ b/bin/mklib @@ -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++"