lmi-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[lmi-commits] [6495] Try to avoid an antimalware issue


From: Greg Chicares
Subject: [lmi-commits] [6495] Try to avoid an antimalware issue
Date: Sat, 30 Jan 2016 12:57:21 +0000

Revision: 6495
          http://svn.sv.gnu.org/viewvc/?view=rev&root=lmi&revision=6495
Author:   chicares
Date:     2016-01-30 12:57:17 +0000 (Sat, 30 Jan 2016)
Log Message:
-----------
Try to avoid an antimalware issue

Modified Paths:
--------------
    lmi/trunk/ChangeLog
    lmi/trunk/install_msw.sh

Modified: lmi/trunk/ChangeLog
===================================================================
--- lmi/trunk/ChangeLog 2016-01-30 12:15:23 UTC (rev 6494)
+++ lmi/trunk/ChangeLog 2016-01-30 12:57:17 UTC (rev 6495)
@@ -38550,3 +38550,25 @@
 in 'main_wx.cpp' originally, and moved to the present file here:
   http://svn.savannah.nongnu.org/viewvc?view=rev&root=lmi&revision=5861
 
+20160129T0231Z <zeitlin> [455]
+
+  configure.ac
+Don't link boost_system library if it's not detected by configure.
+
+20160130T1212Z <address@hidden> [455]
+
+  so_attributes.hpp
+Forestall attribute warnings for gcc-4.9.1 as for gcc-4.9.2 .
+
+20160130T1215Z <address@hidden> [455]
+
+  main_wx.cpp
+  mc_enum_types_aux.cpp
+Don't attempt to force linking a function that is not visible. See:
+  http://lists.nongnu.org/archive/html/lmi/2016-01/msg00087.html
+
+20160130T1257Z <address@hidden> [455]
+
+  install_msw.sh
+Try to avoid an antimalware issue.
+

Modified: lmi/trunk/install_msw.sh
===================================================================
--- lmi/trunk/install_msw.sh    2016-01-30 12:15:23 UTC (rev 6494)
+++ lmi/trunk/install_msw.sh    2016-01-30 12:57:17 UTC (rev 6495)
@@ -80,7 +80,13 @@
 
 [ -z "$restore_opt_mount" ] || sh -c $restore_opt_mount
 
-cygcheck -s -v -r | tr --delete '\r'
+# Read this entire thread for $CYGCHECK rationale:
+#   https://cygwin.com/ml/cygwin/2012-02/threads.html#00910
+#   https://cygwin.com/ml/cygwin/2012-03/threads.html#00005
+# Cf.:
+#   https://lists.nongnu.org/archive/html/lmi/2016-01/msg00092.html
+export CYGCHECK=`cygpath --mixed /usr/bin/cygcheck`
+cmd /c $CYGCHECK -s -v -r | tr --delete '\r'
 
 java -version
 
@@ -151,8 +157,8 @@
 # No lmi binary should depend on any Cygwin library.
 
 for z in /opt/lmi/bin/*; \
-  do cygcheck $z 2>&1 | grep --silent cygwin \
-    && echo -e "\ncygcheck $z" && cygcheck $z; \
+  do cmd /c $CYGCHECK $z 2>&1 | grep --silent cygwin \
+    && echo -e "\ncygcheck $z" && cmd /c $CYGCHECK $z; \
   done
 
 echo -n "2450449 2458849"                          >/opt/lmi/data/expiry




reply via email to

[Prev in Thread] Current Thread [Next in Thread]