aboutsummaryrefslogtreecommitdiff
path: root/libf2c
diff options
context:
space:
mode:
authorH.J. Lu <hongjiu.lu@intel.com>2003-07-04 19:45:55 +0000
committerH.J. Lu <hjl@gcc.gnu.org>2003-07-04 12:45:55 -0700
commit8c90b13a229399354769a5cee7a7872d21de23bb (patch)
tree7a55ee9c7a472ff31005d82e86c69df98dc72504 /libf2c
parent72d4a2ad78d24c8b81335ad3651c4c8a03f5f1de (diff)
downloadgcc-8c90b13a229399354769a5cee7a7872d21de23bb.zip
gcc-8c90b13a229399354769a5cee7a7872d21de23bb.tar.gz
gcc-8c90b13a229399354769a5cee7a7872d21de23bb.tar.bz2
Makefile.tpl: Replace PWD with PWD_COMMAND.
2003-07-04 H.J. Lu <hongjiu.lu@intel.com> * Makefile.tpl: Replace PWD with PWD_COMMAND. * Makefile.in: Regenerated. gcc/ 2003-07-04 H.J. Lu <hongjiu.lu@intel.com> * config-ml.in: Replace PWD with PWD_COMMAND. * Makefile.in: Likewise. gcc/ada/ 2003-07-04 H.J. Lu <hongjiu.lu@intel.com> * Make-lang.in: Replace PWD with PWD_COMMAND. * Makefile.adalib: Likewise. * Makefile.in: Likewise. gcc/treelang/ 2003-07-04 H.J. Lu <hongjiu.lu@intel.com> * Make-lang.in: Replace PWD with PWD_COMMAND. libf2c/ 2003-07-04 H.J. Lu <hongjiu.lu@intel.com> * Makefile.in: Replace PWD with PWD_COMMAND. libstdc++-v3/ 2003-07-04 H.J. Lu <hongjiu.lu@intel.com> * Makefile.am: Replace PWD with PWD_COMMAND. * Makefile.in: Regenerated. * docs/html/Makefile: Likewise. From-SVN: r68931
Diffstat (limited to 'libf2c')
-rw-r--r--libf2c/ChangeLog4
-rw-r--r--libf2c/Makefile.in6
2 files changed, 7 insertions, 3 deletions
diff --git a/libf2c/ChangeLog b/libf2c/ChangeLog
index 846d4dc..17b5840 100644
--- a/libf2c/ChangeLog
+++ b/libf2c/ChangeLog
@@ -1,3 +1,7 @@
+2003-07-04 H.J. Lu <hongjiu.lu@intel.com>
+
+ * Makefile.in: Replace PWD with PWD_COMMAND.
+
2003-06-15 Nathanael Nerode <neroden@gcc.gnu.org>
* libU77/bes.c, libU77/dbes.c: Remove.
diff --git a/libf2c/Makefile.in b/libf2c/Makefile.in
index 4aae68f..7a2c1d9 100644
--- a/libf2c/Makefile.in
+++ b/libf2c/Makefile.in
@@ -20,7 +20,7 @@
#02111-1307, USA.
SHELL = @SHELL@
-PWD = $${PWDCMD-pwd}
+PWD_COMMAND = $${PWDCMD-pwd}
MAKEOVERRIDES=
.NOEXPORTS:
@@ -259,8 +259,8 @@ rebuilt: configure
installcheck installdirs all-unilib
subdir_do:
- @rootpre=`${PWD}`/; export rootpre; \
- srcrootpre=`cd $(srcdir); ${PWD}`/; export srcrootpre; \
+ @rootpre=`${PWD_COMMAND}`/; export rootpre; \
+ srcrootpre=`cd $(srcdir); ${PWD_COMMAND}`/; export srcrootpre; \
for i in .. $(DODIRS); do \
if [ x$$i != x.. ]; then \
if [ -f ./$$i/Makefile ]; then \