diff options
author | Jason Molenda <crash@cygnus> | 1996-04-05 11:18:57 +0000 |
---|---|---|
committer | Jason Molenda <crash@cygnus> | 1996-04-05 11:18:57 +0000 |
commit | eb40ca932e7a3edb33001ed552438eabb27d0243 (patch) | |
tree | 09ad78b5863f46429b69f75e2cfe8f23f372d1f6 /Makefile.in | |
parent | eb5f58e0e05810ab45595310d7ec123cdb6ecb26 (diff) | |
download | gdb-eb40ca932e7a3edb33001ed552438eabb27d0243.zip gdb-eb40ca932e7a3edb33001ed552438eabb27d0243.tar.gz gdb-eb40ca932e7a3edb33001ed552438eabb27d0243.tar.bz2 |
* Makefile.in (BASE_FLAGS_TO_PASS): pass down $(MAKE).
w/o this, if you use GNU make on a Solaris platform (eg), but you don't
have GNU make at the front of your path, when the make/ subdir cds down
into make/glob and does a make there, you will end up picking up the
first make that is in your path no matter what you do.
No PR, I just noticed this while I was working on something else.
Diffstat (limited to 'Makefile.in')
-rw-r--r-- | Makefile.in | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Makefile.in b/Makefile.in index 1dd96ef6..24a6406 100644 --- a/Makefile.in +++ b/Makefile.in @@ -316,6 +316,7 @@ BASE_FLAGS_TO_PASS = \ "LIBCXXFLAGS=$(LIBCXXFLAGS)" \ "LIBCXXFLAGS_FOR_TARGET=$(LIBCXXFLAGS_FOR_TARGET)" \ "M4=$(M4)" \ + "MAKE=$(MAKE)" \ "MAKEINFO=$(MAKEINFO) $(MAKEINFOFLAGS)" \ "NM_FOR_TARGET=$(NM_FOR_TARGET)" \ "PICFLAG=$(PICFLAG)" \ |