+2008-01-07 Bruno Haible <bruno@clisp.org>
+
+ * lib/progname.c (set_program_name): Don't strip off a leading
+ "lt-" prefix outside a .libs directory.
+ Suggested by Paul Eggert.
+
2008-01-01 Sylvain Beucler <beuc@gnu.org>
Bruno Haible <bruno@clisp.org>
/* Program name management.
- Copyright (C) 2001-2003, 2005-2007 Free Software Foundation, Inc.
+ Copyright (C) 2001-2003, 2005-2008 Free Software Foundation, Inc.
Written by Bruno Haible <haible@clisp.cons.org>, 2001.
This program is free software: you can redistribute it and/or modify
slash = strrchr (argv0, '/');
base = (slash != NULL ? slash + 1 : argv0);
if (base - argv0 >= 7 && strncmp (base - 7, "/.libs/", 7) == 0)
- argv0 = base;
- if (strncmp (base, "lt-", 3) == 0)
- argv0 = base + 3;
+ {
+ argv0 = base;
+ if (strncmp (base, "lt-", 3) == 0)
+ argv0 = base + 3;
+ }
program_name = argv0;
}