Makefile: remove `ln -s` for `awesome` (#1906)

It does not seem to be required by tests (anymore), and fails when the
source dir is mounted read-only (which is the case for the Docker based
builds I am working on).

I think it is clearer anyway to run it as `build/awesome`.
This commit is contained in:
Daniel Hahler 2017-07-04 12:25:42 +02:00 committed by GitHub
parent 30cbb0efe2
commit ec51e3f930
1 changed files with 0 additions and 1 deletions

View File

@ -11,7 +11,6 @@ BUILDDIR=build
all: check-unit $(TARGETS) ; all: check-unit $(TARGETS) ;
$(TARGETS): cmake-build $(TARGETS): cmake-build
ln -s -f $(BUILDDIR)/$@ $@
$(BUILDDIR)/Makefile: $(BUILDDIR)/Makefile:
$(ECHO) "Creating build directory and running cmake in it. You can also run CMake directly, if you want." $(ECHO) "Creating build directory and running cmake in it. You can also run CMake directly, if you want."