diff options
author | Fredrik Salomonsson <plattfot@gmail.com> | 2019-06-06 19:55:20 -0700 |
---|---|---|
committer | Fredrik Salomonsson <plattfot@gmail.com> | 2019-06-06 19:55:20 -0700 |
commit | a69f12768f38b662fd5c6eb2365694d98309cbe2 (patch) | |
tree | 4b6c6d387692b3df17d42a855a2e324faa6eef2f /Makefile | |
parent | 1a13b7518b3e450ccd219ee654f7a5862cef996f (diff) | |
download | pinentry-rofi-a69f12768f38b662fd5c6eb2365694d98309cbe2.tar.gz |
Disable the auto compile, which should fix an issue with ubuntu0.4.0
This is a tiny script and it is about as fast without compiling it.
And the compile step in the makefile was causing some issues with
ubuntu distros as they seems to not have guile support enabled
for make.
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 12 |
1 files changed, 4 insertions, 8 deletions
@@ -1,12 +1,8 @@ -ifeq ($(filter $(.FEATURES),guile),) - $(error No guile support bailing out) -endif - -GUILE_SITE_CCACHE ?= $(guile (%site-ccache-dir)) PREFIX ?= PREFIX_BIN ?= $(PREFIX)/usr/bin + +.PHONY: install install: - @install -d $(PREFIX_BIN) $(PREFIX)$(GUILE_SITE_CCACHE) - @install -T pinentry-rofi.scm $(PREFIX_BIN)/pinentry-rofi-guile - @guild compile pinentry-rofi.scm -o $(PREFIX)$(GUILE_SITE_CCACHE)/pinentry-rofi-guile.go + @install -DT pinentry-rofi.scm $(PREFIX_BIN)/pinentry-rofi-guile + |