diff options
| author | Ingo Lohmar <i.lohmar@gmail.com> | 2015-05-09 15:56:36 +0200 |
|---|---|---|
| committer | Ingo Lohmar <i.lohmar@gmail.com> | 2015-05-09 22:59:17 +0200 |
| commit | 79bdc2f784845e3a1b0ce1f3b8db90e9654408eb (patch) | |
| tree | 40874eec2a9a52bb4fde13f391ad260b2c33927d /Makefile | |
| parent | 09286cc0576c850efa5acb241f2828a059628b32 (diff) | |
Makefile: follow links in finding libraries
Diffstat (limited to 'Makefile')
| -rw-r--r-- | Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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 |
