diff options
author | Iain Buclaw <ibuclaw@gdcproject.org> | 2019-04-25 06:26:57 +0000 |
---|---|---|
committer | Iain Buclaw <ibuclaw@gcc.gnu.org> | 2019-04-25 06:26:57 +0000 |
commit | 7da021f080b23bbfe6206855a40a73e145f10b75 (patch) | |
tree | 3bc700a105c4c979a34e62dca85395c6f494ea97 | |
parent | ce0f706246b340516a425d044770b97579e6c2e3 (diff) | |
download | gcc-7da021f080b23bbfe6206855a40a73e145f10b75.zip gcc-7da021f080b23bbfe6206855a40a73e145f10b75.tar.gz gcc-7da021f080b23bbfe6206855a40a73e145f10b75.tar.bz2 |
libphobos: Add missing PWD_COMMAND to Makefile.
2019-04-25 Iain Buclaw <ibuclaw@gdcproject.org>
* testsuite/Makefile.am: Set PWD_COMMAND.
* testsuite/Makefile.in: Regenerate.
From-SVN: r270566
-rw-r--r-- | libphobos/ChangeLog | 5 | ||||
-rw-r--r-- | libphobos/testsuite/Makefile.am | 2 | ||||
-rw-r--r-- | libphobos/testsuite/Makefile.in | 1 |
3 files changed, 8 insertions, 0 deletions
diff --git a/libphobos/ChangeLog b/libphobos/ChangeLog index 6595a82..9d442f4 100644 --- a/libphobos/ChangeLog +++ b/libphobos/ChangeLog @@ -1,5 +1,10 @@ 2019-04-25 Iain Buclaw <ibuclaw@gdcproject.org> + * testsuite/Makefile.am: Set PWD_COMMAND. + * testsuite/Makefile.in: Regenerate. + +2019-04-25 Iain Buclaw <ibuclaw@gdcproject.org> + PR d/90086 * m4/druntime/cpu.m4 (DRUNTIME_CPU_SOURCES): New macro. * configure.ac: Use it. diff --git a/libphobos/testsuite/Makefile.am b/libphobos/testsuite/Makefile.am index 55b2ba4..70b105d 100644 --- a/libphobos/testsuite/Makefile.am +++ b/libphobos/testsuite/Makefile.am @@ -27,6 +27,8 @@ _RUNTEST = $(shell if test -f $(top_srcdir)/../dejagnu/runtest; then \ echo $(top_srcdir)/../dejagnu/runtest; else echo runtest; fi) RUNTESTDEFAULTFLAGS = --tool $$tool --srcdir $$srcdir +PWD_COMMAND = $${PWDCMD-pwd} + check_p_subno=$(word 2,$(subst _, ,$*)) check_p_numbers0:=1 2 3 4 5 6 7 8 9 check_p_numbers1:=0 $(check_p_numbers0) diff --git a/libphobos/testsuite/Makefile.in b/libphobos/testsuite/Makefile.in index 26ed875..efbd884 100644 --- a/libphobos/testsuite/Makefile.in +++ b/libphobos/testsuite/Makefile.in @@ -289,6 +289,7 @@ _RUNTEST = $(shell if test -f $(top_srcdir)/../dejagnu/runtest; then \ echo $(top_srcdir)/../dejagnu/runtest; else echo runtest; fi) RUNTESTDEFAULTFLAGS = --tool $$tool --srcdir $$srcdir +PWD_COMMAND = $${PWDCMD-pwd} check_p_subno = $(word 2,$(subst _, ,$*)) check_p_numbers0 := 1 2 3 4 5 6 7 8 9 check_p_numbers1 := 0 $(check_p_numbers0) |