Skip to content
Snippets Groups Projects
Commit 9eedc983 authored by Christian Engwer's avatar Christian Engwer
Browse files

[am]

oos-build broke the web-site
this fix actually checks where the sources are chooses the right directory

[[Imported from SVN: r6885]]
parent f9a630d5
No related branches found
No related tags found
No related merge requests found
......@@ -21,7 +21,10 @@ endif
# how to build html files
if WML
.wml.html:
$(WMLCMD) -I $(abs_srcdir) $< -o $(abs_builddir)/$@
if test "`dirname $<`" == "."; then \
input="$(abs_srcdir)/$<"; else \
input="$<"; fi; \
$(WMLCMD) -I $(abs_srcdir) $$input -o $(abs_builddir)/$@
endif
####
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment