aboutsummaryrefslogtreecommitdiff
path: root/binutils/arsup.c
diff options
context:
space:
mode:
authorJakub Jelinek <jakub@redhat.com>2001-11-05 16:20:37 +0000
committerJakub Jelinek <jakub@redhat.com>2001-11-05 16:20:37 +0000
commit5e9520c87752aaf3f7920cc231ca50245c364a38 (patch)
tree1f931e9c2675531d0a4b51df3805fb338867e724 /binutils/arsup.c
parent54589086a88ece0455faf23010d847b1c9fefa54 (diff)
downloadbinutils-5e9520c87752aaf3f7920cc231ca50245c364a38.zip
binutils-5e9520c87752aaf3f7920cc231ca50245c364a38.tar.gz
binutils-5e9520c87752aaf3f7920cc231ca50245c364a38.tar.bz2
* arlex.l: Accept `\' in filenames. Patch by <earl_chew@agilent.com>.
* arsup.c (ar_open): Prepend tmp- to basename, not whole path.
Diffstat (limited to 'binutils/arsup.c')
-rw-r--r--binutils/arsup.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/binutils/arsup.c b/binutils/arsup.c
index 0058c0d..1e86479 100644
--- a/binutils/arsup.c
+++ b/binutils/arsup.c
@@ -160,10 +160,11 @@ DEFUN(ar_open,(name, t),
{
char *tname = (char *) xmalloc (strlen (name) + 10);
+ const char *bname = lbasename (name);
real_name = name;
/* Prepend tmp- to the beginning, to avoid file-name clashes after
truncation on filesystems with limited namespaces (DOS). */
- sprintf(tname, "tmp-%s", name);
+ sprintf(tname, "%.*stmp-%s", (int) (bname - name), name, bname);
obfd = bfd_openw(tname, NULL);
if (!obfd) {