Просмотр исходного кода

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

Wichert Akkerman лет назад: 25
Родитель
Сommit
a311d221e1
1 измененных файлов с 1 добавлено и 1 удалено
  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 {