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:
parent
30cbb0efe2
commit
ec51e3f930
1
Makefile
1
Makefile
|
@ -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."
|
||||||
|
|
Loading…
Reference in New Issue