• R/O
  • HTTP
  • SSH
  • HTTPS

コミット

タグ
未設定

よく使われているワード(クリックで追加)

javac++androidlinuxc#windowsobjective-ccocoa誰得qtpythonphprubygameguibathyscaphec計画中(planning stage)翻訳omegatframeworktwitterdomtestvb.netdirectxゲームエンジンbtronarduinopreviewer

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.

変更サマリ

差分

--- a/ChangeLog
+++ b/ChangeLog
@@ -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+
18 2011-05-30 Chris Sutcliffe <ir0nh34d@users.sourceforge.net>
29
310 Update & publish msys-mintty.
--- a/Makefile.comm.in
+++ b/Makefile.comm.in
@@ -67,7 +67,8 @@ issue_log = ${srcdir}/issue.log
6767 # ensures that the computed hash is not influenced by any unintentional
6868 # pollution due to accidental insertion of CRLF line endings).
6969 #
70-sha1hash = awk '{ sub( "\r$$", "" ); print }' $< | openssl sha1
70+sha1hash = awk '{ sub( "\r$$", "" ); print }' $< | $(sha1sum)
71+sha1sum = openssl sha1 | awk '{print $$NF}'
7172
7273 # Formatting within issue.log is controlled by PAD and TAB settings.
7374 #