Przeglądaj źródła

Fix another typo (guess nobody tested the CVS code in a while :)

Wichert Akkerman 25 lat temu
rodzic
commit
a311d221e1
1 zmienionych plików z 1 dodań i 1 usunięć
  1. 1 1
      scripts/dpkg-architecture.pl

+ 1 - 1
scripts/dpkg-architecture.pl

@@ -122,7 +122,7 @@ $deb_build_gnu_system =~ s/^.*-//;
 
 # Default host: Current gcc.
 $gcc = `\${CC:-gcc} --print-libgcc-file-name`;
-if {$?>>8) {
+if ($?>>8) {
     &warn("Couldn't determine gcc system type, falling back to default (native compilation)");
     $gcc = '';
 } else {