diff options
author | zack <zack@138bc75d-0d04-0410-961f-82ee72b054a4> | 2001-07-04 17:31:36 +0000 |
---|---|---|
committer | zack <zack@138bc75d-0d04-0410-961f-82ee72b054a4> | 2001-07-04 17:31:36 +0000 |
commit | da31bd92c01701e2bf94aa2cdaf5a57e5ce21f42 (patch) | |
tree | 0e82810d474a92930c179c87f502a798a2784045 | |
parent | 598be1dcd008232c5c07125e0346677c67364659 (diff) | |
download | gcc-da31bd92c01701e2bf94aa2cdaf5a57e5ce21f42.tar.gz |
* Makefile.in: Take PICFLAG and RUNTESTFLAGS out of FLAGS_TO_PASS.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@43761 138bc75d-0d04-0410-961f-82ee72b054a4
-rw-r--r-- | libf2c/ChangeLog | 4 | ||||
-rw-r--r-- | libf2c/Makefile.in | 3 |
2 files changed, 4 insertions, 3 deletions
diff --git a/libf2c/ChangeLog b/libf2c/ChangeLog index 1a6f0734581..264efa32f6b 100644 --- a/libf2c/ChangeLog +++ b/libf2c/ChangeLog @@ -1,3 +1,7 @@ +2001-07-04 Zack Weinberg <zackw@stanford.edu> + + * Makefile.in: Take PICFLAG and RUNTESTFLAGS out of FLAGS_TO_PASS. + 2001-07-01 Toon Moene <toon@moene.indiv.nluug.nl> * libI77/fio.h: Include <sys/types.h> for off_t. diff --git a/libf2c/Makefile.in b/libf2c/Makefile.in index 9075360fe9b..d925519df2d 100644 --- a/libf2c/Makefile.in +++ b/libf2c/Makefile.in @@ -59,15 +59,12 @@ CFLAGS = @CFLAGS@ # List of variables to pass to sub-makes. # Quote this way so that it can be used to set shell variables too. -# Currently no use for PICFLAG, RUNTESTFLAGS -- check usage. FLAGS_TO_PASS= \ CC='$(CC)' \ CFLAGS='$(CFLAGS)' \ CPPFLAGS='$(CPPFLAGS)' \ AR='$(AR)' \ RANLIB='$(RANLIB)' \ - PICFLAG='$(PICFLAG)' \ - RUNTESTFLAGS='$(RUNTESTFLAGS)' \ prefix='$(prefix)' \ exec_prefix='$(exec_prefix)' \ libdir='$(libdir)' \ |