Don't strip off a leading "lt-" prefix outside a .libs directory.
[gnulib.git] / lib / progname.c
index 47d08c6..2b77a58 100644 (file)
@@ -1,5 +1,5 @@
 /* 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
@@ -42,8 +42,10 @@ set_program_name (const char *argv0)
   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;
 }