aboutsummaryrefslogtreecommitdiff
path: root/Makefile.am
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile.am')
-rw-r--r--Makefile.am6
1 files changed, 4 insertions, 2 deletions
diff --git a/Makefile.am b/Makefile.am
index 1e25726..786ca13 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -16,5 +16,7 @@ libpreload_la_LDFLAGS = -ldl
16bin_SCRIPTS = wrapper.py makecab.py 16bin_SCRIPTS = wrapper.py makecab.py
17 17
18install-exec-hook: 18install-exec-hook:
19 cd $(DESTDIR)$(bindir) && $(LN_S) wrapper.py candle 19 cd $(DESTDIR)$(bindir) && \
20 cd $(DESTDIR)$(bindir) && $(LN_S) wrapper.py light 20 { test -h candle || $(LN_S) wrapper.py candle; }
21 cd $(DESTDIR)$(bindir) && \
22 { test -h light || $(LN_S) wrapper.py light; }