From: Alan T. DeKok Date: Thu, 25 Jan 2018 23:07:42 +0000 (-0500) Subject: Revert "Target needs to be absolute for the rule to run in the correct order" X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=6f8bbe91ea9d241ab799c5eb1510c8b25f294ed8;p=thirdparty%2Ffreeradius-server.git Revert "Target needs to be absolute for the rule to run in the correct order" This reverts commit e46e496911ae57ce8843d8434bb257bbbc7996e1. which breaks the build on most systems --- diff --git a/src/tests/trie/nopc.mk b/src/tests/trie/nopc.mk index 33a7d0fee12..3fae12b56f4 100644 --- a/src/tests/trie/nopc.mk +++ b/src/tests/trie/nopc.mk @@ -13,5 +13,5 @@ TGT_PREREQS := libfreeradius-util.a # But it's useful for the test code to access internal functions / # definitions in the trie library. # -${top_srcdir}/src/tests/trie/nopc.c: ${top_srcdir}/src/lib/util/trie.c +src/tests/trie/nopc.c: ${top_srcdir}/src/lib/util/trie.c @[ -e $@ ] || ln -s $^ $@ diff --git a/src/tests/trie/trie.mk b/src/tests/trie/trie.mk index 5dd29384603..18f6d06f40c 100644 --- a/src/tests/trie/trie.mk +++ b/src/tests/trie/trie.mk @@ -13,5 +13,5 @@ TGT_PREREQS := libfreeradius-util.a # But it's useful for the test code to access internal functions / # definitions in the trie library. # -${top_srcdir}/src/tests/trie/trie.c: ${top_srcdir}/src/lib/util/trie.c +src/tests/trie/trie.c: ${top_srcdir}/src/lib/util/trie.c @[ -e $@ ] || ln -s $^ $(dir $@)