diff options
author | Jan Beich <jbeich@FreeBSD.org> | 2016-11-02 10:21:47 +0000 |
---|---|---|
committer | Jan Beich <jbeich@FreeBSD.org> | 2016-11-02 10:21:47 +0000 |
commit | 65df9b5dde54c1e3033c6376baf9bc8887385c8e (patch) | |
tree | 1b2b9aa5c740b4caf45ab66a07c88f0755f1c378 /x11/sxhkd/files | |
parent | 05470a947eb89df027afa41219ede41e24063752 (diff) |
Notes
Diffstat (limited to 'x11/sxhkd/files')
-rw-r--r-- | x11/sxhkd/files/patch-Makefile | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/x11/sxhkd/files/patch-Makefile b/x11/sxhkd/files/patch-Makefile index b2c4125f4480..0938347ff341 100644 --- a/x11/sxhkd/files/patch-Makefile +++ b/x11/sxhkd/files/patch-Makefile @@ -1,8 +1,8 @@ ---- Makefile.orig 2016-03-15 16:20:41 UTC +--- Makefile.orig 2016-10-30 12:28:09 UTC +++ Makefile -@@ -1,14 +1,14 @@ - NAME = sxhkd - VERSION := $(shell git describe 2> /dev/null || cat VERSION) +@@ -2,14 +2,14 @@ NAME = sxhkd + VERCMD ?= git describe 2> /dev/null + VERSION := $(shell $(VERCMD) || cat VERSION) -CPPFLAGS += -D_POSIX_C_SOURCE=200112L -DVERSION=\"$(VERSION)\" +CPPFLAGS += $(shell pkg-config --cflags xcb-keysyms) -DVERSION=\"$(VERSION)\" @@ -16,11 +16,11 @@ -DOCPREFIX ?= $(PREFIX)/share/doc/$(NAME) +BINPREFIX = $(PREFIX)/bin +MANPREFIX = $(PREFIX)/man -+EXPREFIX = $(PREFIX)/share/examples/$(NAME) ++EXPREFIX = $(PREFIX)/share/examples/$(NAME) - SRC = $(wildcard *.c) - OBJ = $(SRC:.c=.o) -@@ -27,11 +27,15 @@ $(NAME): $(OBJ) + SRC := $(wildcard *.c) + OBJ := $(SRC:.c=.o) +@@ -28,11 +28,15 @@ $(NAME): $(OBJ) install: mkdir -p "$(DESTDIR)$(BINPREFIX)" |