]> mj.ucw.cz Git - libucw.git/commitdiff
Configure: Avoid dashes in names of variables.
authorMartin Mares <mj@ucw.cz>
Sun, 27 Jul 2008 12:59:47 +0000 (14:59 +0200)
committerMartin Mares <mj@ucw.cz>
Sun, 27 Jul 2008 12:59:47 +0000 (14:59 +0200)
ucw/perl/Configure.pm

index 69fe3ea9ff4fa2ba90f5d4ce9fdb26f93803751f..01762422ab5c040aac50c2cad2ae00da33cb2227 100644 (file)
@@ -275,7 +275,7 @@ sub TrivConfig($@) {
        my $want = $opts{want};
        defined $want or $want = ["cflags", "libs"];
        for my $w (@$want) {
-               my $uw = $w; $uw =~ tr/a-z/A-Z/;
+               my $uw = $w; $uw =~ tr/a-z-/A-Z_/;
                my $cf = TryCmd("$pc --$w");
                Set("${upper}_${uw}" => $cf) if defined $cf;
        }