diff options
author | Lukas Larsson <[email protected]> | 2011-12-06 12:02:58 +0100 |
---|---|---|
committer | Lukas Larsson <[email protected]> | 2011-12-08 15:55:02 +0100 |
commit | 7e470b53fc70fbaef150453b9214770abb73af47 (patch) | |
tree | ec4f5a415cd765de236e0d2562f1823719c3d1d2 | |
parent | 873bdb7fee3148c707ab85ad8e71c1333ec8b701 (diff) | |
download | otp-7e470b53fc70fbaef150453b9214770abb73af47.tar.gz otp-7e470b53fc70fbaef150453b9214770abb73af47.tar.bz2 otp-7e470b53fc70fbaef150453b9214770abb73af47.zip |
Link with LIBS after ETHR_LIBS
-rw-r--r-- | erts/test/erl_print_SUITE_data/Makefile.src | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/erts/test/erl_print_SUITE_data/Makefile.src b/erts/test/erl_print_SUITE_data/Makefile.src index 109d55e572..9164c672dc 100644 --- a/erts/test/erl_print_SUITE_data/Makefile.src +++ b/erts/test/erl_print_SUITE_data/Makefile.src @@ -27,7 +27,7 @@ EPTF_CFLAGS = -Wall $(CFLAGS) @DEFS@ -I@erts_lib_include_internal@ -I@erts_lib_i EPTF_LIBS = $(LIBS) -L@erts_lib_internal_path@ -lerts_internal@type_marker@ EPTT_CFLAGS = -DTHREAD_SAFE $(ETHR_DEFS) $(EPTF_CFLAGS) -EPTT_LIBS = $(LIBS) -L@erts_lib_internal_path@ -lerts_internal_r@type_marker@ $(ETHR_LIBS) +EPTT_LIBS = -L@erts_lib_internal_path@ -lerts_internal_r@type_marker@ $(ETHR_LIBS) $(LIBS) GCC = .@DS@gccifier -CC"$(CC)" |