From ab5db38d59ab79aeee83ca31b6b480f398ca340e Mon Sep 17 00:00:00 2001 From: Fredrik Salomonsson Date: Sat, 10 Nov 2018 14:05:53 -0800 Subject: Updated makefile with the rename --- Makefile | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/Makefile b/Makefile index 96d7462..f9c7c38 100644 --- a/Makefile +++ b/Makefile @@ -1,7 +1,5 @@ -GUILE_SUPPORT = $(filter $(.FEATURES),guile) - -ifeq ($(GUILE_SUPPORT),) +ifeq ($(filter $(.FEATURES),guile),) $(error No guile support bailing out) endif @@ -10,5 +8,5 @@ PREFIX ?= PREFIX_BIN ?= $(PREFIX)/usr/bin install: @install -d $(PREFIX_BIN) $(PREFIX)$(GUILE_SITE_CCACHE) - @install -T rofi-pinentry.scm $(PREFIX_BIN)/pinentry-rofi - @guild compile rofi-pinentry.scm -o $(PREFIX)$(GUILE_SITE_CCACHE)/pinentry-rofi.go + @install -T pinentry-rofi.scm $(PREFIX_BIN)/pinentry-rofi-guile + @guild compile pinentry-rofi.scm -o $(PREFIX)$(GUILE_SITE_CCACHE)/pinentry-rofi-guile.go -- cgit