more *BSD arrangements

This commit is contained in:
John Reiser
2006-07-02 21:54:44 -07:00
parent ec0d3f5b5d
commit 32ce83475d
6 changed files with 81 additions and 3 deletions
+5 -1
View File
@@ -213,7 +213,11 @@ static Packer* try_packers(InputFile *f, try_function func)
if ((p = func(new PackLinuxElf32x86interp(f),f)) != NULL)
return p;
}
if ((p = func(new PackBSDElf32x86(f),f)) != NULL)
if ((p = func(new PackFreeBSDElf32x86(f),f)) != NULL)
return p;
if ((p = func(new PackNetBSDElf32x86(f),f)) != NULL)
return p;
if ((p = func(new PackOpenBSDElf32x86(f),f)) != NULL)
return p;
if ((p = func(new PackLinuxElf32x86(f),f)) != NULL)
return p;