XML catalogue of packages which are available for installation, using the mingw-get installer.
リビジョン | 594a1d46aefb46eec317227313a5231491d8a3a6 (tree) |
---|---|
日時 | 2011-06-01 03:43:27 |
作者 | Keith Marshall <keithmarshall@user...> |
コミッター | Keith Marshall |
Work around MSYS' openssl sha1' output format anomaly.
@@ -1,3 +1,10 @@ | ||
1 | +2011-05-31 Keith Marshall <keithmarshall@users.sourceforge.net> | |
2 | + | |
3 | + Work around MSYS' `openssl sha1' output format anomaly. | |
4 | + | |
5 | + * Makefile.comm.in (sha1sum): New macro; define it. | |
6 | + (sha1hash): Use it. | |
7 | + | |
1 | 8 | 2011-05-30 Chris Sutcliffe <ir0nh34d@users.sourceforge.net> |
2 | 9 | |
3 | 10 | Update & publish msys-mintty. |
@@ -67,7 +67,8 @@ issue_log = ${srcdir}/issue.log | ||
67 | 67 | # ensures that the computed hash is not influenced by any unintentional |
68 | 68 | # pollution due to accidental insertion of CRLF line endings). |
69 | 69 | # |
70 | -sha1hash = awk '{ sub( "\r$$", "" ); print }' $< | openssl sha1 | |
70 | +sha1hash = awk '{ sub( "\r$$", "" ); print }' $< | $(sha1sum) | |
71 | +sha1sum = openssl sha1 | awk '{print $$NF}' | |
71 | 72 | |
72 | 73 | # Formatting within issue.log is controlled by PAD and TAB settings. |
73 | 74 | # |