From e058530153a55ccf83d1f2a4d1ca32b94d83508c Mon Sep 17 00:00:00 2001 From: Tor Lillqvist Date: Wed, 24 Aug 2011 17:49:28 +0300 Subject: [PATCH] Allow comments in the autogen.lastrun file --- autogen.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/autogen.sh b/autogen.sh index 7df437bddcdb..bdb9aa9b7208 100755 --- a/autogen.sh +++ b/autogen.sh @@ -61,6 +61,8 @@ sub read_args($) print " $opt\n"; } } + } elsif ( substr($_, 0, 1) eq "#" ) { + # comment } else { push @lst, $_; }