diff options
author | Tor Lillqvist <tlillqvist@novell.com> | 2011-08-24 17:49:28 +0300 |
---|---|---|
committer | Tor Lillqvist <tlillqvist@novell.com> | 2011-08-24 18:01:46 +0300 |
commit | e058530153a55ccf83d1f2a4d1ca32b94d83508c (patch) | |
tree | 469048d52321a82782431e2ef176642c2bdbedfe /autogen.sh | |
parent | 785d8c762c93a7d063bb737f29b3eb7603630e78 (diff) |
Allow comments in the autogen.lastrun file
Diffstat (limited to 'autogen.sh')
-rwxr-xr-x | autogen.sh | 2 |
1 files changed, 2 insertions, 0 deletions
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, $_; } |