mirror of
https://github.com/gentoo-mirror/guru.git
synced 2026-07-14 17:43:11 -04:00
dev-python/clickgen: fix flags
Closes: https://bugs.gentoo.org/830153 Closes: https://bugs.gentoo.org/830152 Signed-off-by: Anna (cybertailor) Vyalkova <cyber+gentoo@sysrq.in>
This commit is contained in:
17
dev-python/clickgen/files/clickgen-flags.patch
Normal file
17
dev-python/clickgen/files/clickgen-flags.patch
Normal file
@@ -0,0 +1,17 @@
|
||||
--- a/xcursorgen/makefile
|
||||
+++ b/xcursorgen/makefile
|
||||
@@ -1,12 +1,12 @@
|
||||
all: xcursorgen.so
|
||||
|
||||
-CC= gcc
|
||||
+CC ?= gcc
|
||||
LIBS= -lX11 -lXcursor -lpng -lz
|
||||
OUT_DIR= ../clickgen
|
||||
CP= cp -f
|
||||
|
||||
xcursorgen.so: xcursorgen.c
|
||||
- $(CC) -Wl,-zdefs -shared -o xcursorgen.so -fPIC xcursorgen.c $(LIBS)
|
||||
+ $(CC) $(CFLAGS) $(LDFLAGS) -Wl,-zdefs -shared -o xcursorgen.so -fPIC xcursorgen.c $(LIBS)
|
||||
$(CP) xcursorgen.so $(OUT_DIR)/xcursorgen.so
|
||||
|
||||
clean:
|
||||
Reference in New Issue
Block a user