12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758 |
- diff --git a/libatomic/testsuite/Makefile.am b/libatomic/testsuite/Makefile.am
- index 561b7e2..2548a1b 100644
- --- a/libatomic/testsuite/Makefile.am
- +++ b/libatomic/testsuite/Makefile.am
- @@ -11,3 +11,9 @@ EXPECT = $(shell if test -f $(top_builddir)/../expect/expect; then \
- _RUNTEST = $(shell if test -f $(top_srcdir)/../dejagnu/runtest; then \
- echo $(top_srcdir)/../dejagnu/runtest; else echo runtest; fi)
- RUNTEST = "$(_RUNTEST) $(AM_RUNTESTFLAGS)"
- +
- +EXTRA_DEJAGNU_SITE_CONFIG = extra.exp
- +
- +extra.exp:
- + echo 'set BUILD_CC "$(CC)"' > $@.tmp
- + mv $@.tmp $@
- diff --git a/libatomic/testsuite/Makefile.in b/libatomic/testsuite/Makefile.in
- index 34f83e0..4af67ad 100644
- --- a/libatomic/testsuite/Makefile.in
- +++ b/libatomic/testsuite/Makefile.in
- @@ -222,6 +222,7 @@ _RUNTEST = $(shell if test -f $(top_srcdir)/../dejagnu/runtest; then \
- echo $(top_srcdir)/../dejagnu/runtest; else echo runtest; fi)
-
- RUNTEST = "$(_RUNTEST) $(AM_RUNTESTFLAGS)"
- +EXTRA_DEJAGNU_SITE_CONFIG = extra.exp
- all: all-am
-
- .SUFFIXES:
- @@ -428,6 +429,10 @@ uninstall-am:
- uninstall uninstall-am
-
-
- +extra.exp:
- + echo 'set BUILD_CC "$(CC)"' > $@.tmp
- + mv $@.tmp $@
- +
- # Tell versions [3.59,3.63) of GNU make to not export all variables.
- # Otherwise
- .NOEXPORT:
- diff /libatomic//lib//libatomic//lib/
- index
- --- a/libatomic/testsuite/lib/libatomic.exp
- +++ b/libatomic/testsuite/lib/libatomic.exp
- @@ -74,6 +74,7 @@ proc
- global
- global
- global
- + global
- global
- global
- global
- @@ -89,6 +90,8 @@ proc
- if
- if
- set
- + } elseif
- + set
- } else
- set
- }
|