This is the mail archive of the cygwin-apps mailing list for the Cygwin 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] genini: support new tags


The attached patch for genini allows it to recognize (and ignore) the new setup.hint tags.


Yaakov
2013-10-07  Yaakov Selkowitz  <yselkowitz@...>

	* genini (parse): Ignore arch:, release:, and skip: tags.

Index: genini
===================================================================
RCS file: /cvs/cygwin-apps/genini/genini,v
retrieving revision 1.14
diff -u -p -r1.14 genini
--- genini	17 Jul 2013 16:33:16 -0000	1.14
+++ genini	7 Oct 2013 19:24:32 -0000
@@ -139,6 +139,15 @@ sub parse {
 	    $main::setup_version = $_;
 	    next;
 	};
+	/^arch:/ and do {
+	    next;
+	};
+	/^release:/ and do {
+	    next;
+	};
+	/^skip:/ and do {
+	    next;
+	};
 	/^\@\s+(\S+)/ and do {
 	    $pname = $1;
 	    $what = '';

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