Commit b16cea79 authored by Poul-Henning Kamp's avatar Poul-Henning Kamp

Dont rely on realpath(1), OSX does not have it.

parent da6de540
......@@ -22,7 +22,7 @@ clean:
.PHONY: link_srcdir
link_srcdir: graphviz conf.py $(BUILT_SOURCES)
if test "x$(srcdir)" != "x$(builddir)" && test ! -f index.rst; then \
s=`realpath $(srcdir)`; \
s=`cd $(srcdir) && pwd`; \
for f in `cd $$s && find . -type f`; do \
d=`dirname $$f`; \
test -d $$d || mkdir -p $$d; \
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment