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]

PATCH: Fix Makefile.in for taz


Hi Alan,

Your patch

http://sources.redhat.com/ml/binutils/2001-02/msg00603.html

breaks some tarball targets at the toplevel since the version is
keyed to AM_INIT_AUTOMAKE in package/configure.in. With your patch,
it cannot find the version number. This patch should fix it. I will
check it in shortly.


H.J.
---
2001-06-17  H.J. Lu <hjl@gnu.org>

	* Makefile.in (gas.tar.bz2): Pass TOOL=bfd PACKAGE=gas to make.
	(gas+binutils.tar.bz2): Likewise.
	(binutils.tar.bz2): Pass TOOL=bfd PACKAGE=binutils to make.

Index: Makefile.in
===================================================================
RCS file: /work/cvs/gnu/binutils/Makefile.in,v
retrieving revision 1.1.1.26
diff -u -p -r1.1.1.26 Makefile.in
--- Makefile.in	2001/06/16 07:09:26	1.1.1.26
+++ Makefile.in	2001/06/17 17:58:36
@@ -1890,7 +1890,7 @@ DIST_SUPPORT= $(DEVO_SUPPORT) $(TEXINFO_
 .PHONY: gas.tar.bz2
 GAS_SUPPORT_DIRS= bfd include libiberty opcodes intl setup.com makefile.vms mkdep
 gas.tar.bz2: $(DIST_SUPPORT) $(GAS_SUPPORT_DIRS) gas
-	$(MAKE) -f Makefile.in taz TOOL=gas \
+	$(MAKE) -f Makefile.in taz TOOL=bfd PACKAGE=gas \
 		MD5PROG="$(MD5PROG)" \
 		SUPPORT_FILES="$(GAS_SUPPORT_DIRS)"
 
@@ -1898,14 +1898,14 @@ gas.tar.bz2: $(DIST_SUPPORT) $(GAS_SUPPO
 .PHONY: binutils.tar.bz2
 BINUTILS_SUPPORT_DIRS= bfd gas include libiberty opcodes ld gprof intl setup.com makefile.vms mkdep
 binutils.tar.bz2: $(DIST_SUPPORT) $(BINUTILS_SUPPORT_DIRS) binutils
-	$(MAKE) -f Makefile.in taz TOOL=binutils \
+	$(MAKE) -f Makefile.in taz TOOL=bfd PACKAGE=binutils \
 		MD5PROG="$(MD5PROG)" \
 		SUPPORT_FILES="$(BINUTILS_SUPPORT_DIRS)"
 
 .PHONY: gas+binutils.tar.bz2
 GASB_SUPPORT_DIRS= $(GAS_SUPPORT_DIRS) binutils ld gprof
 gas+binutils.tar.bz2: $(DIST_SUPPORT) $(GASB_SUPPORT_DIRS) gas
-	$(MAKE) -f Makefile.in taz TOOL=gas \
+	$(MAKE) -f Makefile.in taz TOOL=bfd PACKAGE=gas \
 		MD5PROG="$(MD5PROG)" \
 		SUPPORT_FILES="$(GASB_SUPPORT_DIRS)"
 


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