Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mm2/Little-CMS.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarti Maria <marti.maria@littlecms.com>2022-05-01 17:45:32 +0300
committerMarti Maria <marti.maria@littlecms.com>2022-05-01 17:45:32 +0300
commit86e7c7746ecf496482890d9f2db1e6e006f40fb4 (patch)
treea9c920048a59be9236a95f82efa7f24faeb76758 /plugins
parent43453ea71b1de9fc4df9e6cd6cbaba385b2659d5 (diff)
Fix PR#320
The PR was ok for out of tree builds but unfortunately normal builds were broken. Now is fixed .
Diffstat (limited to 'plugins')
-rw-r--r--plugins/fast_float/testbed/Makefile.in14
1 files changed, 9 insertions, 5 deletions
diff --git a/plugins/fast_float/testbed/Makefile.in b/plugins/fast_float/testbed/Makefile.in
index bccc892..eec2fad 100644
--- a/plugins/fast_float/testbed/Makefile.in
+++ b/plugins/fast_float/testbed/Makefile.in
@@ -113,7 +113,8 @@ am_fast_float_testbed_OBJECTS = fast_float_testbed.$(OBJEXT)
fast_float_testbed_OBJECTS = $(am_fast_float_testbed_OBJECTS)
am__DEPENDENCIES_1 =
fast_float_testbed_DEPENDENCIES = \
- $(srcdir)/../src/liblcms2_fast_float.la $(am__DEPENDENCIES_1)
+ $(builddir)/../src/liblcms2_fast_float.la \
+ $(am__DEPENDENCIES_1)
AM_V_lt = $(am__v_lt_@AM_V@)
am__v_lt_ = $(am__v_lt_@AM_DEFAULT_V@)
am__v_lt_0 = --silent
@@ -331,12 +332,12 @@ top_srcdir = @top_srcdir@
# Don't require all the GNU mandated files
AUTOMAKE_OPTIONS = 1.7 foreign
AM_CPPFLAGS = -I$(builddir)/../include -I$(srcdir)/../include -I$(srcdir)/../src \
- -I$(top_builddir)/include
+ -I$(top_builddir)/include
-fast_float_testbed_LDADD = $(srcdir)/../src/liblcms2_fast_float.la $(LCMS_LIB_DEPLIBS)
+fast_float_testbed_LDADD = $(builddir)/../src/liblcms2_fast_float.la $(LCMS_LIB_DEPLIBS)
fast_float_testbed_LDFLAGS = -static @LDFLAGS@
-fast_float_testbed_SOURCES = fast_float_testbed.c
-EXTRA_DIST = test0.icc test1.icc test2.icc test3.icc test5.icc
+fast_float_testbed_SOURCES = fast_float_testbed.c
+EXTRA_DIST = test0.icc test1.icc test2.icc test3.icc test5.icc
all: all-am
.SUFFIXES:
@@ -639,6 +640,9 @@ uninstall-am:
check:
+ if [ "x$(srcdir)" != "x$(builddir)" ]; then \
+ cp $(srcdir)/test?.icc . ; \
+ fi
./fast_float_testbed
# Tell versions [3.59,3.63) of GNU make to not export all variables.