diff options
author | Jack Lloyd <[email protected]> | 2017-12-11 18:17:45 -0500 |
---|---|---|
committer | Jack Lloyd <[email protected]> | 2017-12-11 18:17:45 -0500 |
commit | c40ba649ea54ae5658864e45146fde56d60663ba (patch) | |
tree | 1ece75f009cb0d3621d5441045b82417bdc9ca89 | |
parent | fc8bbcb193739a015761eca39219067616794543 (diff) |
Avoid a warning under AIX make
It doesn't like variables that don't expand to anything.
-rw-r--r-- | src/build-data/makefile.in | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/src/build-data/makefile.in b/src/build-data/makefile.in index 86a2f4f3f..3db5beed8 100644 --- a/src/build-data/makefile.in +++ b/src/build-data/makefile.in @@ -25,8 +25,6 @@ EXE_FLAGS = $(LANG_FLAGS) $(CXXFLAGS) $(WARN_FLAGS) SCRIPTS_DIR = %{scripts_dir} INSTALLED_LIB_DIR = %{prefix}/%{libdir} -POST_LINK_CMD = %{post_link_cmd} - # The primary target all: libs cli docs tests @@ -69,11 +67,11 @@ TESTOBJS = %{join test_objs} $(CLI): $(LIBRARIES) $(CLIOBJS) $(EXE_LINK_CMD) $(LDFLAGS) $(CLIOBJS) $(EXE_LINKS_TO) %{output_to_exe}$@ - $(POST_LINK_CMD) + %{post_link_cmd} $(TEST): $(LIBRARIES) $(TESTOBJS) $(EXE_LINK_CMD) $(LDFLAGS) $(TESTOBJS) $(EXE_LINKS_TO) %{output_to_exe}$@ - $(POST_LINK_CMD) + %{post_link_cmd} %{if build_fuzzers} |