|
From: <gi...@gp...> - 2011-05-20 04:53:32
|
The branch, master has been updated
via cb9f0505f8342be5034d624c88f013d11c229b6a (commit)
from 0adead1b4f810e066d547e7f603060348e45eef1 (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
=========
Summary
=========
src/file.c | 3 ++-
1 files changed, 2 insertions(+), 1 deletions(-)
=================
Commit Messages
=================
commit cb9f0505f8342be5034d624c88f013d11c229b6a
Author: Felix Ruoff <Fe...@po...>
Commit: DJ Delorie <dj...@de...>
Ignore *.pcb files on generating library
Closes-bug: lp-699261
:100644 100644 b1c8182... 682aa02... M src/file.c
=========
Changes
=========
commit cb9f0505f8342be5034d624c88f013d11c229b6a
Author: Felix Ruoff <Fe...@po...>
Commit: DJ Delorie <dj...@de...>
Ignore *.pcb files on generating library
Closes-bug: lp-699261
diff --git a/src/file.c b/src/file.c
index b1c8182..682aa02 100644
--- a/src/file.c
+++ b/src/file.c
@@ -1239,7 +1239,8 @@ LoadNewlibFootprintsFromDir(char *libpath, char *toppath)
&& NSTRCMP (subdirentry->d_name, "Makefile.am") != 0
&& NSTRCMP (subdirentry->d_name, "Makefile.in") != 0
&& (l < 4 || NSTRCMP(subdirentry->d_name + (l - 4), ".png") != 0)
- && (l < 5 || NSTRCMP(subdirentry->d_name + (l - 5), ".html") != 0) )
+ && (l < 5 || NSTRCMP(subdirentry->d_name + (l - 5), ".html") != 0)
+ && (l < 4 || NSTRCMP(subdirentry->d_name + (l - 4), ".pcb") != 0) )
{
#ifdef DEBUG
/* printf("... Found a footprint %s ... \n", subdirentry->d_name); */
|