From 820a3f04fd4cd967e3831baa835b4b177929f4d3 Mon Sep 17 00:00:00 2001 From: Jay Berkenbilt Date: Fri, 18 Mar 2022 18:22:54 -0400 Subject: Remove "lt-" workarounds The executables that libtool built invoked the underlying binary with an "lt-" prefix. The code contained numerous workarounds for testing, which can now be removed. --- zlib-flate/zlib-flate.cc | 5 ----- 1 file changed, 5 deletions(-) (limited to 'zlib-flate/zlib-flate.cc') diff --git a/zlib-flate/zlib-flate.cc b/zlib-flate/zlib-flate.cc index d4809dc5..57bec46a 100644 --- a/zlib-flate/zlib-flate.cc +++ b/zlib-flate/zlib-flate.cc @@ -34,11 +34,6 @@ int main(int argc, char* argv[]) { ++whoami; } - // For libtool's sake.... - if (strncmp(whoami, "lt-", 3) == 0) - { - whoami += 3; - } if ((argc == 2) && (strcmp(argv[1], "--version") == 0)) { -- cgit v1.2.3-54-g00ecf