The MinGW.org Windows System Libraries
リビジョン | 2e1e5c90e5078ebcfa6c51271706e49b934b9a86 (tree) |
---|---|
日時 | 2013-06-27 21:06:58 |
作者 | Earnie Boyd <earnie@user...> |
コミッター | Earnie Boyd |
Resolve issue to define all components of _STAT_DEFINED.
@@ -1,7 +1,14 @@ | ||
1 | 1 | 2013-06-27 Earnie Boyd <earnie@users.sourceforge.net> |
2 | 2 | |
3 | 3 | * include/wchar.h: Resolve issue to define all components of |
4 | - _STAT_DEFINED. | |
4 | + _STAT_DEFINED | |
5 | + | |
6 | +2013-06-25 Keith Marshall <keithmarshall@users.sourceforge.net> | |
7 | + | |
8 | + Correct ill advised use of non-standard shell syntax. | |
9 | + | |
10 | + * Makefile.in (lib%.a): Remove bash/ksh/csh style logic construct; | |
11 | + replace it using standard Bourne shell "test" command syntax. | |
5 | 12 | |
6 | 13 | 2013-06-21 Mark Brand <mabrand@mabrand.nl> |
7 | 14 |
@@ -724,12 +724,12 @@ lib%.a: %.def | ||
724 | 724 | V=`echo $@ | sed -e 's|lib\([a-z]*\)\([0-9]*\).*|\2|'`; \ |
725 | 725 | DLLNAME="$${N}$${V}.dll"; \ |
726 | 726 | $(DLLTOOL) $(DLLTOOL_FLAGS) $${DLLNAME} --def $< --output-lib $@ ; \ |
727 | - if [[ $${DLLNAME} = msvcrt.dll || \ | |
728 | - $${DLLNAME} = msvcrtd.dll || \ | |
729 | - $${DLLNAME} = msvcr70.dll || \ | |
730 | - $${DLLNAME} = msvcr70d.dll || \ | |
731 | - $${DLLNAME} = msvcr71.dll || \ | |
732 | - $${DLLNAME} = msvcr71d.dll ]]; then \ | |
727 | + if test $${DLLNAME} = msvcrt.dll \ | |
728 | + -o $${DLLNAME} = msvcrtd.dll \ | |
729 | + -o $${DLLNAME} = msvcr70.dll \ | |
730 | + -o $${DLLNAME} = msvcr70d.dll \ | |
731 | + -o $${DLLNAME} = msvcr71.dll \ | |
732 | + -o $${DLLNAME} = msvcr71d.dll; then \ | |
733 | 733 | $(AR) rc $@ src/libcrt/crt/ofmt_stub.o; \ |
734 | 734 | fi |
735 | 735 | $(RANLIB) $@ |