diff options
author | Michael Mair-Keimberger (asterix) <m.mairkeimberger@gmail.com> | 2017-02-18 16:37:18 +0100 |
---|---|---|
committer | David Seifert <soap@gentoo.org> | 2017-02-18 23:07:56 +0100 |
commit | 5ce5fc4c5145ebf3dd604acfbd004f59831faa67 (patch) | |
tree | a676296a8f15e9bce365be0ddf0a46edccec078e /x11-misc/set_opacity | |
parent | x11-misc/shared-mime-info: remove unused patches (diff) | |
download | gentoo-5ce5fc4c5145ebf3dd604acfbd004f59831faa67.tar.gz gentoo-5ce5fc4c5145ebf3dd604acfbd004f59831faa67.tar.bz2 gentoo-5ce5fc4c5145ebf3dd604acfbd004f59831faa67.zip |
x11-misc/set_opacity: remove unused patch
Closes: https://github.com/gentoo/gentoo/pull/4017
Diffstat (limited to 'x11-misc/set_opacity')
-rw-r--r-- | x11-misc/set_opacity/files/makefile.patch | 21 |
1 files changed, 0 insertions, 21 deletions
diff --git a/x11-misc/set_opacity/files/makefile.patch b/x11-misc/set_opacity/files/makefile.patch deleted file mode 100644 index bb21db68ce48..000000000000 --- a/x11-misc/set_opacity/files/makefile.patch +++ /dev/null @@ -1,21 +0,0 @@ ---- Makefile 2006-02-09 16:45:52.000000000 +0300 -+++ Makefile 2011-07-18 13:58:58.644703015 +0400 -@@ -1,14 +1,14 @@ - PACKAGES = xcomposite xfixes xdamage xrender --LIBS=`pkg-config --libs ${PACKAGES}` -lm --INCS=`pkg-config --cflags ${PACKAGES}` -+LIBS=$(shell pkg-config --libs $(PACKAGES)) -lm -+INCS=$(shell pkg-config --cflags $(PACKAGES)) - - .c.o: -- $(CC) $(CFLAGS) $(INCS) -c $*.c -+ $(CC) $(CFLAGS) $(INCS) -c $< -o $@ - - OBJS=set_opacity.o interface.o stack.o - - set_opacity: $(OBJS) -- $(CC) $(CFLAGS) -g -o $@ $(OBJS) $(LIBS) -+ $(CC) $(CFLAGS) $(LDFLAGS) -o $@ $(OBJS) $(LIBS) - - $(OBJS): interface.h stack.h - |