|
From: <gi...@gp...> - 2010-02-23 23:56:22
|
The branch, master has been updated
via d8be4844b96e768c3a872f17d79b89bf6a5c84d8 (commit)
from e4d4198e6e771c8bd019bc61c34342aa003a217a (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/main.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
=================
Commit Messages
=================
commit d8be4844b96e768c3a872f17d79b89bf6a5c84d8
Author: Peter Clifton <pc...@ca...>
Commit: Peter Clifton <pc...@ca...>
Fix default gnetlist executable name to be "gnetlist"
The old value "defgnetlist" appears to have been a mistake.
:100644 100644 9d61ffb... 400aebc... M src/main.c
=========
Changes
=========
commit d8be4844b96e768c3a872f17d79b89bf6a5c84d8
Author: Peter Clifton <pc...@ca...>
Commit: Peter Clifton <pc...@ca...>
Fix default gnetlist executable name to be "gnetlist"
The old value "defgnetlist" appears to have been a mistake.
diff --git a/src/main.c b/src/main.c
index 9d61ffb..400aebc 100644
--- a/src/main.c
+++ b/src/main.c
@@ -612,7 +612,7 @@ REGISTER_ATTRIBUTES (main_attribute_list)
Settings.GnetlistProgram = getenv ("PCB_GNETLIST");
}
if (Settings.GnetlistProgram == NULL) {
- Settings.GnetlistProgram = strdup ("defgnetlist");
+ Settings.GnetlistProgram = strdup ("gnetlist");
}
|