dotgnu-pnet-commits
[Top][All Lists]
Advanced

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

[dotgnu-pnet-commits] pnet ChangeLog ilgac/ilgac.c


From: Radek Polak
Subject: [dotgnu-pnet-commits] pnet ChangeLog ilgac/ilgac.c
Date: Fri, 02 Feb 2007 15:39:50 +0000

CVSROOT:        /sources/dotgnu-pnet
Module name:    pnet
Changes by:     Radek Polak <radekp>    07/02/02 15:39:50

Modified files:
        .              : ChangeLog 
        ilgac          : ilgac.c 

Log message:
        fix ilgac so that we can do make uninstall on cygwin

CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/pnet/ChangeLog?cvsroot=dotgnu-pnet&r1=1.3408&r2=1.3409
http://cvs.savannah.gnu.org/viewcvs/pnet/ilgac/ilgac.c?cvsroot=dotgnu-pnet&r1=1.2&r2=1.3

Patches:
Index: ChangeLog
===================================================================
RCS file: /sources/dotgnu-pnet/pnet/ChangeLog,v
retrieving revision 1.3408
retrieving revision 1.3409
diff -u -b -r1.3408 -r1.3409
--- ChangeLog   23 Jan 2007 19:49:01 -0000      1.3408
+++ ChangeLog   2 Feb 2007 15:39:50 -0000       1.3409
@@ -1,3 +1,10 @@
+2007-02-02  Radek Polak  <address@hidden>
+
+       * ilgac/ilgac.c: Fix problem with make uninstall in pnetlib on cygwin.
+       Problem is that uninstall wants to delete files that do not exist and
+       ilgac reports this as fatal error. Now we just silently ignore
+       attempts to delete files which do not exist.
+
 2007-01-23  Radek Polak  <address@hidden>
 
        * configure.in: Remove --with-debugger configure option.

Index: ilgac/ilgac.c
===================================================================
RCS file: /sources/dotgnu-pnet/pnet/ilgac/ilgac.c,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -b -r1.2 -r1.3
--- ilgac/ilgac.c       26 Nov 2003 21:38:08 -0000      1.2
+++ ilgac/ilgac.c       2 Feb 2007 15:39:50 -0000       1.3
@@ -948,7 +948,7 @@
        {
                printf("removing %s\n", path);
        }
-       error = ILDeleteFile(path);
+       error = DeleteFile(path);
        if(error != 0)
        {
                PrintError(path, error);




reply via email to

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