pinentry-dmenu

a pinentry program based on dmenu
git clone anongit@rnpnr.xyz:pinentry-dmenu.git
Log | Files | Refs | Feed | README | LICENSE

Commit: c5ae60970e4fef2428b182541e9df772c36060c8
Parent: 5e4fbfc45051dbd020af7b6d2d44b2e76cde82ef
Author: Randy Palamar
Date:   Sat,  5 Nov 2022 09:06:01 -0600

remove unneeded lib from config.mk

and update BUGREPORT url

Diffstat:
Mconfig.mk | 4++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/config.mk b/config.mk @@ -1,6 +1,6 @@ # Pinentry settings VERSION = 0.1 -BUGREPORT = https:\/\/github.com\/ritze\/pinentry-dmenu +BUGREPORT = https:\/\/github.com\/0x766F6964\/pinentry-dmenu # Paths PREFIX = /usr/local @@ -21,7 +21,7 @@ FREETYPEINC = /usr/include/freetype2 # Includes and libs INCS = -I$(X11INC) -I$(FREETYPEINC) -LIBS = -lassuan -lgpgme -lgpg-error -L$(X11LIB) -lX11 $(XINERAMALIBS) $(FREETYPELIBS) +LIBS = -lassuan -lgpg-error -L$(X11LIB) -lX11 $(XINERAMALIBS) $(FREETYPELIBS) # Flags CPPFLAGS = -D_DEFAULT_SOURCE -D_POSIX_C_SOURCE=200809L -DVERSION=\"$(VERSION)\" $(XINERAMAFLAGS) -DPACKAGE_VERSION=\"$(VERSION)\" -DPACKAGE_BUGREPORT=\"$(BUGREPORT)\"