aboutsummaryrefslogtreecommitdiff
path: root/gprof
diff options
context:
space:
mode:
Diffstat (limited to 'gprof')
-rw-r--r--gprof/ChangeLog5
-rw-r--r--gprof/po/Make-in4
2 files changed, 8 insertions, 1 deletions
diff --git a/gprof/ChangeLog b/gprof/ChangeLog
index 84f2b3d..079f34a 100644
--- a/gprof/ChangeLog
+++ b/gprof/ChangeLog
@@ -1,3 +1,8 @@
+2002-05-02 Nick Clifton <nickc@cambridge.redhat.com>
+
+ * po/Make-in (.po.gmo): Do not attempt to create a .gmo file if
+ the sources are read-only.
+
2002-04-04 Alan Modra <amodra@bigpond.net.au>
* dep-in.sed: Cope with absolute paths.
diff --git a/gprof/po/Make-in b/gprof/po/Make-in
index 0552db1..833d418 100644
--- a/gprof/po/Make-in
+++ b/gprof/po/Make-in
@@ -70,7 +70,9 @@ INSTOBJEXT = @INSTOBJEXT@
.po.gmo:
file=$(srcdir)/`echo $* | sed 's,.*/,,'`.gmo \
- && rm -f $$file && $(GMSGFMT) -o $$file $<
+ && test -w $$file \
+ && (rm -f $$file && $(GMSGFMT) -o $$file $< ) \
+ || echo "$$file is not writable"
.po.cat:
sed -f ../intl/po2msg.sed < $< > $*.msg \