This is the mail archive of the binutils@sources.redhat.com mailing list for the binutils project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

I checked in a patch for binutils/Makefile.*


I got

Makefile:1235: warning: overriding commands for target `/work/gnu/src/binutils/binutils/dlltool.1'
Makefile:1228: warning: ignoring old commands for target `/work/gnu/src/binutils/binutils/dlltool.1'

I checked in this patch to fix it.


H.J
---
2001-03-28  H.J. Lu  <hjl@gnu.org>

	* Makefile.am ($(srcdir)/dlltool.1): Remove the extra target.
	* Makefile.in: Regenerate.

Index: Makefile.am
===================================================================
RCS file: /cvs/src/src/binutils/Makefile.am,v
retrieving revision 1.21
diff -u -p -r1.21 Makefile.am
--- Makefile.am	2001/03/25 20:32:25	1.21
+++ Makefile.am	2001/03/28 18:59:16
@@ -381,13 +381,6 @@ $(srcdir)/dlltool.1:	$(srcdir)/binutils.
 		mv -f $@.T$$$$ $@) || (rm -f $@.T$$$$ && exit 1)
 	rm -f $@.pod
 
-$(srcdir)/dlltool.1:	$(srcdir)/binutils.texi
-	touch $@
-	-$(TEXI2POD) $(MANCONF) -Ddlltool < $< > $@.pod
-	-($(POD2MAN) $@.pod | sed -e '/^.if n .na/d' > $@.T$$$$ && \
-		mv -f $@.T$$$$ $@) || (rm -f $@.T$$$$ && exit 1)
-	rm -f $@.pod
-
 $(srcdir)/nlmconv.1:	$(srcdir)/binutils.texi
 	touch $@
 	-$(TEXI2POD) $(MANCONF) -Dnlmconv < $< > $@.pod
Index: Makefile.in
===================================================================
RCS file: /cvs/src/src/binutils/Makefile.in,v
retrieving revision 1.26
diff -u -p -r1.26 Makefile.in
--- Makefile.in	2001/03/25 20:32:25	1.26
+++ Makefile.in	2001/03/28 18:59:20
@@ -906,7 +906,7 @@ distdir: $(DISTFILES)
 	@for file in $(DISTFILES); do \
 	  if test -f $$file; then d=.; else d=$(srcdir); fi; \
 	  if test -d $$d/$$file; then \
-	    cp -pr $$/$$file $(distdir)/$$file; \
+	    cp -pr $$d/$$file $(distdir)/$$file; \
 	  else \
 	    test -f $(distdir)/$$file \
 	    || ln $$d/$$file $(distdir)/$$file 2> /dev/null \
@@ -1219,13 +1219,6 @@ $(srcdir)/addr2line.1:	$(srcdir)/binutil
 $(srcdir)/ar.1:	$(srcdir)/binutils.texi
 	touch $@
 	-$(TEXI2POD) $(MANCONF) -Dar < $< > $@.pod
-	-($(POD2MAN) $@.pod | sed -e '/^.if n .na/d' > $@.T$$$$ && \
-		mv -f $@.T$$$$ $@) || (rm -f $@.T$$$$ && exit 1)
-	rm -f $@.pod
-
-$(srcdir)/dlltool.1:	$(srcdir)/binutils.texi
-	touch $@
-	-$(TEXI2POD) $(MANCONF) -Ddlltool < $< > $@.pod
 	-($(POD2MAN) $@.pod | sed -e '/^.if n .na/d' > $@.T$$$$ && \
 		mv -f $@.T$$$$ $@) || (rm -f $@.T$$$$ && exit 1)
 	rm -f $@.pod


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]