2
0
mirror of https://gitlab.isc.org/isc-projects/kea synced 2025-08-22 01:49:48 +00:00

[master] Use explicit name of the first prerequisite in ext/gtest.

The $< variable is not defined in explicit rules on FreeBSD10 and causes
Kea build to fail. This change was reviewed and agreed on jabber.
This commit is contained in:
Marcin Siodelski 2014-10-29 17:36:39 +01:00
parent 3c5b5bfcf5
commit 19b039492a

View File

@ -7,4 +7,4 @@ libgtest_a_CXXFLAGS = $(GTEST_INCLUDES) $(AM_CXXFLAGS)
nodist_libgtest_a_SOURCES = gtest-all.cc
gtest-all.cc: $(GTEST_SOURCE)/src/gtest-all.cc
cp -p $< $@
cp -p $(GTEST_SOURCE)/src/gtest-all.cc $@