diff options
author | Rainer Orth <ro@gcc.gnu.org> | 2002-05-16 17:43:21 +0000 |
---|---|---|
committer | Rainer Orth <ro@gcc.gnu.org> | 2002-05-16 17:43:21 +0000 |
commit | 1e6347d8b985c539ddce9bce71b3483ace55ec74 (patch) | |
tree | b0c410ed26a6acb25b6592f5e1cb2696d808ecf0 /gcc/ada | |
parent | 355e4ec44580fbe7c605e726afee6e2eba03f905 (diff) | |
download | gcc-1e6347d8b985c539ddce9bce71b3483ace55ec74.zip gcc-1e6347d8b985c539ddce9bce71b3483ace55ec74.tar.gz gcc-1e6347d8b985c539ddce9bce71b3483ace55ec74.tar.bz2 |
Makefile.in: Allow for PWDCMD to override hardcoded pwd.
* Makefile.in: Allow for PWDCMD to override hardcoded pwd.
* config-ml.in: Likewise.
* configure: Likewise.
* configure.in: Likewise.
boehm-gc:
* acinclude.m4: Allow for PWDCMD to override hardcoded pwd.
* aclocal.m4: Regenerate.
* configure: Regenerate.
config:
* acinclude.m4: Allow for PWDCMD to override hardcoded pwd.
contrib:
* test_installed: Allow for PWDCMD to override hardcoded pwd.
* test_summary: Likewise.
gcc:
* Makefile.in: Allow for PWDCMD to override hardcoded pwd.
* configure.in: Likewise.
* fixinc/check.tpl: Likewise.
* fixinc/fixinc.dgux: Likewise.
* fixinc/fixinc.svr4: Likewise.
* fixinc/fixinc.winnt: Likewise.
* fixinc/fixincl.sh: Likewise.
* fixproto: Likewise.
* configure: Regenerate.
gcc/ada:
* Makefile.adalib: Allow for PWDCMD to override hardcoded pwd.
* Makefile.in: Likewise.
gcc/f:
* Make-lang.in: Allow for PWDCMD to override hardcoded pwd.
gcc/java:
* Make-lang.in: Allow for PWDCMD to override hardcoded pwd.
gcc/po:
* exgettext: Allow for PWDCMD to override hardcoded pwd.
gcc/treelang:
* Make-lang.in: Allow for PWDCMD to override hardcoded pwd.
libf2c:
* Makefile.in: Allow for PWDCMD to override hardcoded pwd.
* aclocal.m4: Likewise.
* configure: Regenerate.
libjava:
* acinclude.m4: Allow for PWDCMD to override hardcoded pwd.
* configure.in: Likewise.
* aclocal.m4: Regenerate.
* configure: Regenerate.
libobjc:
* aclocal.m4: Allow for PWDCMD to override hardcoded pwd.
* configure: Regenerate.
libstdc++-v3:
* Makefile.am: Allow for PWDCMD to override hardcoded pwd.
* acinclude.m4: Likewise.
* docs/html/Makefile: Likewise.
* aclocal.m4: Regenerate.
* configure: Regenerate.
* Makefile.in: Regenerate.
zlib:
* configure.in: Allow for PWDCMD to override hardcoded pwd.
* configure: Regenerate.
* ChangeLog: Move entries to ChangeLog.gcj.
From-SVN: r53523
Diffstat (limited to 'gcc/ada')
-rw-r--r-- | gcc/ada/ChangeLog | 5 | ||||
-rw-r--r-- | gcc/ada/Makefile.adalib | 3 | ||||
-rw-r--r-- | gcc/ada/Makefile.in | 9 |
3 files changed, 12 insertions, 5 deletions
diff --git a/gcc/ada/ChangeLog b/gcc/ada/ChangeLog index 25a91b0..4065003 100644 --- a/gcc/ada/ChangeLog +++ b/gcc/ada/ChangeLog @@ -1,3 +1,8 @@ +2002-05-16 Rainer Orth <ro@TechFak.Uni-Bielefeld.DE> + + * Makefile.adalib: Allow for PWDCMD to override hardcoded pwd. + * Makefile.in: Likewise. + 2002-05-14 Rainer Orth <ro@TechFak.Uni-Bielefeld.DE> * Make-lang.in (gnat1$(exeext), gnatbind$(exeext), gnattools): diff --git a/gcc/ada/Makefile.adalib b/gcc/ada/Makefile.adalib index e43c1b6..3ac2561 100644 --- a/gcc/ada/Makefile.adalib +++ b/gcc/ada/Makefile.adalib @@ -42,10 +42,11 @@ # updating the value of the environment variable ADA_OBJECTS_PATH SHELL=sh +PWD=$${PWDCMD-pwd} CC = gcc AR = ar -GNAT_ROOT = $(shell cd $(ROOT);pwd)/ +GNAT_ROOT = $(shell cd $(ROOT);${PWD})/ target = $(shell $(CC) -dumpmachine) version = $(shell $(CC) -dumpversion) ADA_INCLUDE_PATH = $(GNAT_ROOT)lib/gcc-lib/$(target)/$(version)/adainclude/ diff --git a/gcc/ada/Makefile.in b/gcc/ada/Makefile.in index 8e867e1..9783b42 100644 --- a/gcc/ada/Makefile.in +++ b/gcc/ada/Makefile.in @@ -115,6 +115,7 @@ RANLIB = ranlib # Test to use to see whether ranlib exists on the system. RANLIB_TEST = [ -f /usr/bin/ranlib -o -f /bin/ranlib ] SHELL = /bin/sh +PWD = $${PWDCMD-pwd} # How to copy preserving the date INSTALL_DATA_DATE = cp -p MAKEINFO = makeinfo @@ -192,10 +193,10 @@ TREE_H = $(srcdir)/../tree.h $(srcdir)/../real.h $(srcdir)/../tree.def \ $(MACHMODE_H) $(srcdir)/../tree-check.h $(srdir)/../version.h \ $(srcdir)/../builtins.def -fsrcdir := $(shell cd $(srcdir);pwd) -fsrcpfx := $(shell cd $(srcdir);pwd)/ -fcurdir := $(shell pwd) -fcurpfx := $(shell pwd)/ +fsrcdir := $(shell cd $(srcdir);${PWD}) +fsrcpfx := $(shell cd $(srcdir);${PWD})/ +fcurdir := $(shell ${PWD}) +fcurpfx := $(shell ${PWD})/ # Top build directory, relative to here. top_builddir = .. |