From 46e2e407363e628161e5e0e967ba2bb8bbe67472 Mon Sep 17 00:00:00 2001 From: "Markus F.X.J. Oberhumer" Date: Fri, 10 Nov 2000 03:43:39 +0000 Subject: [PATCH] Disable PackLinuxI386sep for now. Compressed binaries really should be completely self contained. Also, I'm afraid that an external decompressor will require too much work for maintaining unlimited backward compatibility. If we really want to enable this again at some future point more work must go into it - at least I think that there should be a *single* external program that handles all algorithms and versions. committer: mfx 973827819 +0000 --- src/packmast.cpp | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/packmast.cpp b/src/packmast.cpp index 46f9a565..0b535678 100644 --- a/src/packmast.cpp +++ b/src/packmast.cpp @@ -161,10 +161,13 @@ static Packer* try_packers(InputFile *f, try_function func) return p; if ((p = func(new PackTos(f),f)) != NULL) return p; - if (opt->script_name) { +#if 0 + if (opt->unix.script_name) + { if ((p = func(new PackLinuxI386sep(f),f)) != NULL) return p; } +#endif if ((p = func(new PackLinuxI386elf(f),f)) != NULL) return p; if ((p = func(new PackLinuxI386sh(f),f)) != NULL)