From: Arran Cudbard-Bell Date: Thu, 25 Jan 2018 21:15:55 +0000 (-0700) Subject: 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=e46e496911ae57ce8843d8434bb257bbbc7996e1;p=thirdparty%2Ffreeradius-server.git Target needs to be absolute for the rule to run in the correct order --- diff --git a/src/tests/trie/nopc.mk b/src/tests/trie/nopc.mk index 3fae12b56f4..33a7d0fee12 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. # -src/tests/trie/nopc.c: ${top_srcdir}/src/lib/util/trie.c +${top_srcdir}/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 18f6d06f40c..5dd29384603 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. # -src/tests/trie/trie.c: ${top_srcdir}/src/lib/util/trie.c +${top_srcdir}/src/tests/trie/trie.c: ${top_srcdir}/src/lib/util/trie.c @[ -e $@ ] || ln -s $^ $(dir $@)