diff --git a/common/kiway.cpp b/common/kiway.cpp index 39bbdab38f..9562945030 100644 --- a/common/kiway.cpp +++ b/common/kiway.cpp @@ -74,7 +74,7 @@ void KIWAY::player_destroy_handler( wxWindowDestroyEvent& event ) } } - // event.Skip(); skip to who, the wxApp? I'm the top window. + event.Skip(); // skip to who, the wxApp? I'm the top window. } diff --git a/common/single_top.cpp b/common/single_top.cpp index 26e260651b..0a0dbf986a 100644 --- a/common/single_top.cpp +++ b/common/single_top.cpp @@ -37,7 +37,6 @@ #include #include #include -#include #include #include #include diff --git a/scripts/library-repos-install.sh b/scripts/library-repos-install.sh index b34b570343..cda6be8c18 100755 --- a/scripts/library-repos-install.sh +++ b/scripts/library-repos-install.sh @@ -114,6 +114,10 @@ detect_pretty_repos() | sed -r 's:.+ "KiCad/(.+)",:\1:'` #echo "PRETTY_REPOS:$PRETTY_REPOS" + + PRETTY_REPOS=`echo $PRETTY_REPOS | tr " " "\n" | sort` + + #echo "PRETTY_REPOS sorted:$PRETTY_REPOS" } @@ -226,9 +230,13 @@ if [ $# -eq 1 -a "$1" == "--list-libraries" ]; then detect_pretty_repos # add the "schematic parts & 3D model" kicad-library to total - for repo in kicad-library $PRETTY_REPOS; do + for repo in $PRETTY_REPOS; do echo "$repo" done + + echo + echo "and the special 'kicad-library' which holds 3D stuff and schematic parts" + exit fi