Skip to content

Commit

Permalink
Fix OpenBSD build
Browse files Browse the repository at this point in the history
Using $< in a non-suffix rule context is a GNUmake idiom and OpenBSD
doesn't like it.
  • Loading branch information
matteo-frigo committed Sep 19, 2017
1 parent 31a5378 commit 6e0ae04
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Makefile.am
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,7 @@ FindFFTW3@[email protected]: $(top_srcdir)/FindFFTW3.cmake.in
-e 's|[@]PREC_SUFFIX@|@PREC_SUFFIX@|g' \
-e 's|[@]libdir@|$(libdir)|g' \
-e 's|[@]includedir@|$(includedir)|g' \
"$<" > "$@"
$(top_srcdir)/FindFFTW3.cmake.in > $@
cmakedir = $(datarootdir)/cmake/Modules
cmake_DATA = FindFFTW3@[email protected]

Expand Down

0 comments on commit 6e0ae04

Please sign in to comment.