diff options
| author | Joursoir <chat@joursoir.net> | 2024-09-29 16:16:21 +0300 | 
|---|---|---|
| committer | Joursoir <chat@joursoir.net> | 2024-09-29 16:18:51 +0300 | 
| commit | b2a02ddaad2344fc94a15a79d8fe12baa0be2349 (patch) | |
| tree | e040c1a4df6a44f076deaede4228210608dd4082 | |
| parent | c08e123e69236965d0ae7660e88ee0c47906c6c9 (diff) | |
| download | lock-password-b2a02ddaad2344fc94a15a79d8fe12baa0be2349.tar.gz lock-password-b2a02ddaad2344fc94a15a79d8fe12baa0be2349.tar.bz2 lock-password-b2a02ddaad2344fc94a15a79d8fe12baa0be2349.zip | |
makefile: use pkg-config for gpgme
gpgme-config are deprecated to prefer pkg-config
| -rwxr-xr-x | Makefile | 2 | 
1 files changed, 1 insertions, 1 deletions
| @@ -1,7 +1,7 @@  PREFIX = /usr/local/bin  CC = gcc  CFLAGS = -Wall -g #-DDEBUG -LIBS = $(shell gpgme-config --cflags --libs) +LIBS = $(shell pkg-config --cflags --libs gpgme)  MAN_PATH = /usr/share/man/man1  COMPLETION_PATH = /usr/share/bash-completion/completions/lpass  SOURCES = \ | 
