aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFred Fish <fnf@specifix.com>1993-03-11 02:40:29 +0000
committerFred Fish <fnf@specifix.com>1993-03-11 02:40:29 +0000
commit0b96ed0655e98bdbca122e06b420ac35181215ca (patch)
treeca166f15288932ec883d9b6fe1831d0d41da855f
parentd3b43da8a558124afc24b3ece1536ddf79803e9e (diff)
downloadgdb-0b96ed0655e98bdbca122e06b420ac35181215ca.zip
gdb-0b96ed0655e98bdbca122e06b420ac35181215ca.tar.gz
gdb-0b96ed0655e98bdbca122e06b420ac35181215ca.tar.bz2
* Makefile.in (VERSION): Bump version to 4.8.2.
-rw-r--r--gdb/ChangeLog2
-rw-r--r--gdb/Makefile.in13
2 files changed, 11 insertions, 4 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog
index 9a1a5b4..942102c 100644
--- a/gdb/ChangeLog
+++ b/gdb/ChangeLog
@@ -1,5 +1,7 @@
Wed Mar 10 17:37:11 1993 Fred Fish (fnf@cygnus.com)
+ * Makefile.in (VERSION): Bump version to 4.8.2.
+
* main.c (source_command): Require an explicit pathname of file
to source, since previous behavior of defaulting to gdb init file
was troublesome and undocumented.
diff --git a/gdb/Makefile.in b/gdb/Makefile.in
index e8aea6f..f3616f8 100644
--- a/gdb/Makefile.in
+++ b/gdb/Makefile.in
@@ -163,7 +163,7 @@ CDEPS = ${XM_CDEPS} ${TM_CDEPS} ${NAT_CDEPS} \
ADD_FILES = ${REGEX} ${ALLOCA} ${XM_ADD_FILES} ${TM_ADD_FILES} ${NAT_ADD_FILES}
ADD_DEPS = ${REGEX1} ${ALLOCA1} ${XM_ADD_FILES} ${TM_ADD_FILES} ${NAT_ADD_FILES}
-VERSION = 4.8.1
+VERSION = 4.8.2
DIST=gdb
LINT=/usr/5bin/lint
@@ -239,18 +239,23 @@ CHILL_FOR_TARGET = ` \
CHILL_LIB = -lchill
$(end-sanitize-chill)
+# The use of $$(x_FOR_TARGET) reduces the command line length by not
+# duplicating the lengthy definition.
TARGET_FLAGS_TO_PASS = \
"prefix=$(prefix)" \
"exec_prefix=$(exec_prefix)" \
"against=$(against)" \
- "CC=$(CC_FOR_TARGET)" \
+ 'CC=$$(CC_FOR_TARGET)' \
+ "CC_FOR_TARGET=$(CC_FOR_TARGET)" \
"CFLAGS=$(CFLAGS)" \
$(start-sanitize-chill)\
"CHILLFLAGS=$(CHILLFLAGS)" \
- "CHILL=$(CHILL_FOR_TARGET)" \
+ 'CHILL=$$(CHILL_FOR_TARGET)' \
+ "CHILL_FOR_TARGET=$(CHILL_FOR_TARGET)" \
"CHILL_LIB=$(CHILL_LIB)" \
$(end-sanitize-chill)\
- "CXX=$(CXX_FOR_TARGET)" \
+ 'CXX=$$(CXX_FOR_TARGET)' \
+ "CXX_FOR_TARGET=$(CXX_FOR_TARGET)" \
"CXXFLAGS=$(CXXFLAGS)" \
"MAKEINFO=$(MAKEINFO)" \
"INSTALL=$(INSTALL)" \