aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorIngo Lohmar <i.lohmar@gmail.com>2015-05-09 15:56:36 +0200
committerIngo Lohmar <i.lohmar@gmail.com>2015-05-09 22:59:17 +0200
commit79bdc2f784845e3a1b0ce1f3b8db90e9654408eb (patch)
tree40874eec2a9a52bb4fde13f391ad260b2c33927d /Makefile
parent09286cc0576c850efa5acb241f2828a059628b32 (diff)
Makefile: follow links in finding libraries
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 0f792b0..50cd3e0 100644
--- a/Makefile
+++ b/Makefile
@@ -10,14 +10,14 @@ statsdir ?= ./stats
ELPA_DIR ?= $(HOME)/.emacs.d/elpa
CL_LIB_DIR ?= $(shell \
- find $(ELPA_DIR) -maxdepth 1 -regex '.*/cl-lib-[.0-9]*' 2> /dev/null | \
+ find -L $(ELPA_DIR) -maxdepth 1 -regex '.*/cl-lib-[.0-9]*' 2> /dev/null | \
sort | tail -n 1)
ifeq "$(CL_LIB_DIR)" ""
CL_LIB_DIR = ../cl-lib
endif
DASH_DIR ?= $(shell \
- find $(ELPA_DIR) -maxdepth 1 -regex '.*/dash-[.0-9]*' 2> /dev/null | \
+ find -L $(ELPA_DIR) -maxdepth 1 -regex '.*/dash-[.0-9]*' 2> /dev/null | \
sort | tail -n 1)
ifeq "$(DASH_DIR)" ""
DASH_DIR = ../dash