# HG changeset patch
# User Mychaela Falconia <falcon@ivan.Harhan.ORG>
# Date 1454189538 0
# Node ID f2bcf69fce63f8f909263ab96500b0e973896436
# Parent  c9acfeed99e65d320cc03c64708fe702eb03fc99
pads2gpcb: -s option to enable footprint silk processing

diff -r c9acfeed99e6 -r f2bcf69fce63 pads2gpcb/main.c
--- a/pads2gpcb/main.c	Sat Jan 30 21:31:03 2016 +0000
+++ b/pads2gpcb/main.c	Sat Jan 30 21:32:18 2016 +0000
@@ -59,8 +59,11 @@
 	int c;
 	extern int optind;
 
-	while ((c = getopt(argc, argv, "w:")) != EOF)
+	while ((c = getopt(argc, argv, "sw:")) != EOF)
 		switch (c) {
+		case 's':
+			do_footprint_silk = 1;
+			continue;
 		case 'w':
 			process_write_option();
 			continue;