INCATools / semantic-sql

SQL and SQLite builds of OWL ontologies
https://incatools.github.io/semantic-sql/
BSD 3-Clause "New" or "Revised" License
38 stars 3 forks source link

relation-graph symlink broken #23

Closed turbomam closed 2 years ago

turbomam commented 3 years ago

In Ubuntu Linux 20 now, but I think I saw this in MacOS 11 too.

make bin/relation-graph

... relation-graph-1.1/bin/relation-graph.bat ln: failed to create symbolic link './relation-graph': File exists make: *** [Makefile:56: bin/relation-graph] Error 1

$ ls -l bin/

total 4560 -rwxrwxr-x 1 mark mark 4661320 Oct 19 14:12 rdftab -rw-rw-r-- 1 mark mark 1 Oct 19 14:10 README.txt lrwxrwxrwx 1 mark mark 1 Oct 19 14:10 relation-graph -> ''$'\n'

This fixes it

cd bin/
rm relation-graph 
ln -s ../relation-graph/bin/relation-graph
turbomam commented 3 years ago

I think this supersedes #11