Browse Source

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

Wichert Akkerman 25 years ago
parent
commit
a311d221e1
1 changed files with 1 additions and 1 deletions
  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.
 # Default host: Current gcc.
 $gcc = `\${CC:-gcc} --print-libgcc-file-name`;
 $gcc = `\${CC:-gcc} --print-libgcc-file-name`;
-if {$?>>8) {
+if ($?>>8) {
     &warn("Couldn't determine gcc system type, falling back to default (native compilation)");
     &warn("Couldn't determine gcc system type, falling back to default (native compilation)");
     $gcc = '';
     $gcc = '';
 } else {
 } else {