15 lines
207 B
Text
15 lines
207 B
Text
|
#!/usr/bin/perl -w
|
||
|
|
||
|
use strict;
|
||
|
|
||
|
open(CONF, "configure.ac") or die "Couldn't open configure.ac: $!\n";
|
||
|
|
||
|
while (<CONF>) {
|
||
|
if (/^AC_INIT\(\[stow\], \[(.+?)\]/) {
|
||
|
print "$1\n";
|
||
|
exit 0;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
exit 1;
|