public inbox for gdb-patches@sourceware.org
 help / color / mirror / Atom feed
From: Vincent Smeets <Vincent.VSmeets@GMail.com>
To: gdb-patches@sourceware.org
Cc: Vincent Smeets <Vincent.VSmeets@GMail.com>
Subject: [PATCH 7/7] opcodes: build with mktemp
Date: Thu, 19 Jan 2023 18:55:07 +0100	[thread overview]
Message-ID: <20230119175507.25046-8-Vincent.VSmeets@GMail.com> (raw)
In-Reply-To: <20230119175507.25046-1-Vincent.VSmeets@GMail.com>

---
 opcodes/Makefile.am | 12 +++++++-----
 1 file changed, 7 insertions(+), 5 deletions(-)

diff --git a/opcodes/Makefile.am b/opcodes/Makefile.am
index 7aa4e53f..628e4ccd 100644
--- a/opcodes/Makefile.am
+++ b/opcodes/Makefile.am
@@ -333,9 +333,10 @@ libopcodes_a_SOURCES =
 stamp-lib: libopcodes.la
 	libtooldir=`$(LIBTOOL) --config | sed -n -e 's/^objdir=//p'`; \
 	if [ -f $$libtooldir/libopcodes.a ]; then \
-	  cp $$libtooldir/libopcodes.a libopcodes.tmp; \
-	  $(RANLIB) libopcodes.tmp; \
-	  $(SHELL) $(srcdir)/../move-if-change libopcodes.tmp libopcodes.a; \
+	  tmp=`mktemp --tmpdir=. libopcodes.XXXXXX.a`; \
+	  cp $$libtooldir/libopcodes.a $$tmp; \
+	  $(RANLIB) $$tmp; \
+	  $(SHELL) $(srcdir)/../move-if-change $$tmp libopcodes.a; \
 	else true; fi
 	touch stamp-lib
 
@@ -343,8 +344,9 @@ libopcodes.a: stamp-lib ; @true
 
 POTFILES = $(HFILES) $(CFILES)
 po/POTFILES.in: @MAINT@ Makefile
-	for f in $(POTFILES); do echo $$f; done | LC_ALL=C sort > tmp \
-	  && mv tmp $(srcdir)/po/POTFILES.in
+	tmp=`mktemp --tmpdir=. POTFILES.XXXXXX.in`; \
+	for f in $(POTFILES); do echo $$f; done | LC_ALL=C sort > $$tmp \
+	  && mv $$tmp $(srcdir)/po/POTFILES.in
 
 CLEANFILES = \
 	stamp-epiphany stamp-fr30 stamp-frv stamp-ip2k stamp-iq2000 stamp-lm32 \
-- 
2.39.0


  parent reply	other threads:[~2023-01-19 17:55 UTC|newest]

Thread overview: 9+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2023-01-19 17:55 [Bug binutils/30022] concurrent builds can fail Vincent Smeets
2023-01-19 17:55 ` [PATCH 1/7] bfd: build with mktemp Vincent Smeets
2023-01-19 17:55 ` [PATCH 2/7] binutils: " Vincent Smeets
2023-01-19 17:55 ` [PATCH 3/7] gas: " Vincent Smeets
2023-01-19 17:55 ` [PATCH 4/7] gold: " Vincent Smeets
2023-01-19 17:55 ` [PATCH 5/7] gprof: " Vincent Smeets
2023-01-19 17:55 ` [PATCH 6/7] ld: " Vincent Smeets
2023-01-19 17:55 ` Vincent Smeets [this message]
2023-01-19 20:32 ` [Bug binutils/30022] concurrent builds can fail Tom Tromey

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20230119175507.25046-8-Vincent.VSmeets@GMail.com \
    --to=vincent.vsmeets@gmail.com \
    --cc=gdb-patches@sourceware.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).