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]

fix bfd dependencies, POTFILES


Um, had version.h as a dependency on the wrong file.

bfd/ChangeLog
	* configure.in (AC_OUTPUT <bfd-in3.h>): Remove version.h.
	* configure: Regenerate.
	* Makefile.am (BFD_H_FILES): Add version.h.
	* Makefile.in: Regenerate.
	* po/SRC-POTFILES.in: Regenerate.

bfd/doc/ChangeLog
	* Makefile.am (BFD_H_DEP): Add ../version.h.
	* Makefile.in: Regenerate.

Committed to mainline.

-- 
Alan Modra

Index: bfd/Makefile.am
===================================================================
RCS file: /cvs/src/src/bfd/Makefile.am,v
retrieving revision 1.64
diff -u -p -r1.64 Makefile.am
--- Makefile.am	2001/10/02 05:58:41	1.64
+++ Makefile.am	2001/10/03 12:11:50
@@ -504,7 +504,7 @@ SOURCE_HFILES = \
 	libaout.h libbfd.h libcoff.h libecoff.h libhppa.h \
 	libieee.h libnlm.h liboasys.h libpei.h netbsd.h nlm-target.h \
 	nlmcode.h nlmswap.h ns32k.h peicode.h som.h vms.h libxcoff.h \
-	xcoff-target.h
+	xcoff-target.h version.h
 
 ## ... and all .h files which are in the build tree.
 BUILD_HFILES = \
@@ -702,7 +702,7 @@ stmp-bfd-h: bfd-in3.h
 	touch stmp-bfd-h
 
 BFD_H_FILES = bfd-in.h init.c opncls.c libbfd.c section.c archures.c \
-	reloc.c syms.c bfd.c archive.c corefile.c targets.c format.c
+	reloc.c syms.c bfd.c archive.c corefile.c targets.c format.c version.h
 LIBBFD_H_FILES = libbfd-in.h init.c libbfd.c cache.c reloc.c archures.c elf.c
 LIBCOFF_H_FILES = libcoff-in.h coffcode.h
 
Index: bfd/configure.in
===================================================================
RCS file: /cvs/src/src/bfd/configure.in,v
retrieving revision 1.60
diff -u -p -r1.60 configure.in
--- configure.in	2001/10/02 05:58:37	1.60
+++ configure.in	2001/10/03 12:11:56
@@ -771,6 +771,6 @@ case ${want_mmap}+${ac_cv_func_mmap_fixe
 esac
 
 rm -f doc/config.status
-AC_OUTPUT(Makefile doc/Makefile bfd-in3.h:bfd-in2.h:version.h po/Makefile.in:po/Make-in,
+AC_OUTPUT(Makefile doc/Makefile bfd-in3.h:bfd-in2.h po/Makefile.in:po/Make-in,
 [sed -e '/SRC-POTFILES =/r po/SRC-POTFILES' -e '/BLD-POTFILES =/r po/BLD-POTFILES' po/Makefile.in > po/Makefile])
 
Index: bfd/doc/Makefile.am
===================================================================
RCS file: /cvs/src/src/bfd/doc/Makefile.am,v
retrieving revision 1.2
diff -u -p -r1.2 Makefile.am
--- Makefile.am	2001/10/01 14:03:36	1.2
+++ Makefile.am	2001/10/03 12:11:57
@@ -183,7 +183,8 @@ s-linker: $(MKDOC) $(srcdir)/../linker.c
 	touch s-linker
 linker.texi: s-linker
 
-LIBBFD_H_DEP = $(srcdir)/../libbfd-in.h	\
+LIBBFD_H_DEP = \
+	$(srcdir)/../libbfd-in.h	\
 	$(srcdir)/../init.c		\
 	$(srcdir)/../libbfd.c		\
 	$(srcdir)/../cache.c		\
@@ -204,7 +205,8 @@ libbfd.h: $(LIBBFD_H_DEP)
 	  esac; \
 	done
 
-LIBCOFF_H_DEP = $(srcdir)/../libcoff-in.h	\
+LIBCOFF_H_DEP = \
+	$(srcdir)/../libcoff-in.h	\
 	$(srcdir)/../coffcode.h		\
 	$(srcdir)/header.sed		\
 	$(srcdir)/proto.str		\
@@ -220,7 +222,8 @@ libcoff.h: $(LIBCOFF_H_DEP)
 	  esac; \
 	done
 
-BFD_H_DEP = $(srcdir)/../bfd-in.h 	\
+BFD_H_DEP = \
+	$(srcdir)/../bfd-in.h 		\
 	$(srcdir)/../init.c 		\
 	$(srcdir)/../opncls.c 		\
 	$(srcdir)/../libbfd.c 		\
@@ -235,6 +238,7 @@ BFD_H_DEP = $(srcdir)/../bfd-in.h 	\
 	$(srcdir)/../format.c		\
 	$(srcdir)/header.sed		\
 	$(srcdir)/proto.str		\
+	$(srcdir)/../version.h		\
 	$(MKDOC)
 
 bfd.h: $(BFD_H_DEP)


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