Changeset d3e43f083d03f52d97b1708a6f36372c653f5424
- Timestamp:
- 01/22/10 20:57:42
(3 years ago)
- Author:
- Theo Schlossnagle <jesus@omniti.com>
- git-committer:
- Theo Schlossnagle <jesus@omniti.com> 1264193862 +0000
- git-parent:
[d9bf4bf08c8020fe8736d7d88769204a4da95208]
- git-author:
- Theo Schlossnagle <jesus@omniti.com> 1264193862 +0000
- Message:
expose more info
-
Files:
-
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
| rbd1849b |
rd3e43f0 |
|
| 15 | 15 | print STDERR "help:\n"; |
|---|
| 16 | 16 | for my $o (keys %opts) { |
|---|
| | 17 | $o =~ s/_/-/g; |
|---|
| 17 | 18 | print STDERR "\t--$o\n"; |
|---|
| 18 | 19 | } |
|---|
| … | … | |
| 33 | 34 | } |
|---|
| 34 | 35 | (my $o = $v) =~ s/^--//; |
|---|
| 35 | | $o =~ s/_/-/g; |
|---|
| 36 | 36 | die "Bad option: $v" if "--$o" ne $v; |
|---|
| | 37 | $o =~ s/-/_/g; |
|---|
| 37 | 38 | die "No such option: $o" unless exists $opts{$o}; |
|---|
| 38 | 39 | print interp($opts{$o}); |
|---|
| … | … | |
| 64 | 65 | srcdir=@srcdir@ |
|---|
| 65 | 66 | top_srcdir=@top_srcdir@ |
|---|
| | 67 | shld=@SHLD@ |
|---|
| | 68 | shflags=@SHFLAGS@ |
|---|
| | 69 | moduleld=@MODULELD@ |
|---|
| 66 | 70 | modules_dir=@MODULES_DIR@ |
|---|
| | 71 | moduleext=@MODULEEXT@ |
|---|
| | 72 | picflags=@PICFLAGS@ |
|---|