We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0b7e12f commit a44cfcbCopy full SHA for a44cfcb
bin/makefile-builder/links.py
@@ -26,11 +26,11 @@ def make_all_links(links):
26
27
def make_link(make_target, link_target, makefile_block):
28
link_location = make_target.rsplit('/', 1)[0] + '/'
29
- m.append_var('LINKS', make_target, makefile_block)
30
31
if makefile_block == 'content':
32
m.target(make_target, '', makefile_block)
33
else:
+ m.append_var('LINKS', make_target, makefile_block)
34
m.target(make_target, link_location, makefile_block)
35
36
m.job('@bin/create-link ' + link_target + ' $(notdir $@) ' + link_location, makefile_block)
0 commit comments