This is the mail archive of the gcc-patches@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Patch: fix typo in gcc.c


This patch only fix typo after changes of directory structure on
July the 31st.


2003-09-03  Nicolas Roche  <roche@act-europe.fr>

        * gcc.c (process_command): Fix typo.

*** gcc.c       Thu Aug 28 03:37:47 2003
--- new         Wed Sep  3 18:02:59 2003
*************** process_command (int argc, const char *c
*** 3186,3192 ****
          if (IS_DIR_SEPARATOR (*temp)
              && strncmp (temp + 1, "lib", 3) == 0
              && IS_DIR_SEPARATOR (temp[4])
!             && strncmp (temp + 5, "gcc", 7) == 0)
            len -= sizeof ("/lib/gcc/") - 1;
        }
  
--- 3186,3192 ----
          if (IS_DIR_SEPARATOR (*temp)
              && strncmp (temp + 1, "lib", 3) == 0
              && IS_DIR_SEPARATOR (temp[4])
!             && strncmp (temp + 5, "gcc", 3) == 0)
            len -= sizeof ("/lib/gcc/") - 1;
        }



Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]