diff options
author | Michael Mair-Keimberger (asterix) <m.mairkeimberger@gmail.com> | 2017-01-23 19:02:38 +0100 |
---|---|---|
committer | David Seifert <soap@gentoo.org> | 2017-01-26 23:36:19 +0100 |
commit | 45094cee69371da6d82bec57eade6dc871622a98 (patch) | |
tree | f61e5e71191ea324e7060ef5a4b846b73ef38555 /net-print/c2esp | |
parent | net-libs/openslp: remove unused patches (diff) | |
download | gentoo-45094cee69371da6d82bec57eade6dc871622a98.tar.gz gentoo-45094cee69371da6d82bec57eade6dc871622a98.tar.bz2 gentoo-45094cee69371da6d82bec57eade6dc871622a98.zip |
net-print/c2esp: remove unused patch
Closes: https://github.com/gentoo/gentoo/pull/3608
Diffstat (limited to 'net-print/c2esp')
-rw-r--r-- | net-print/c2esp/files/c2esp-24-ldflags-cppflags.patch | 32 |
1 files changed, 0 insertions, 32 deletions
diff --git a/net-print/c2esp/files/c2esp-24-ldflags-cppflags.patch b/net-print/c2esp/files/c2esp-24-ldflags-cppflags.patch deleted file mode 100644 index f1059c465330..000000000000 --- a/net-print/c2esp/files/c2esp-24-ldflags-cppflags.patch +++ /dev/null @@ -1,32 +0,0 @@ ---- a/Makefile -+++ b/Makefile -@@ -166,16 +166,16 @@ - @echo - - c2esp: c2esp.o c2espcommon.o $(LIBJBG85) -- $(CC) $(CFLAGS) -o $@ c2esp.o c2espcommon.o -lcupsimage -lcups -lcupsdriver $(LIBJBG85) -+ $(CC) $(CFLAGS) $(LDFLAGS) -o $@ c2esp.o c2espcommon.o -lcupsimage -lcups -lcupsdriver $(LIBJBG85) - - c2espC: c2espC.o c2espcommon.o -- $(CC) $(CFLAGS) -o $@ c2espC.o c2espcommon.o -lcupsimage -lcups -lcupsdriver -lz -+ $(CC) $(CFLAGS) $(LDFLAGS) -o $@ c2espC.o c2espcommon.o -lcupsimage -lcups -lcupsdriver -lz - - command2esp: command2esp.o c2espcommon.o -- $(CC) $(CFLAGS) -o $@ command2esp.o c2espcommon.o -lcups -lcupsdriver -+ $(CC) $(CFLAGS) $(LDFLAGS) -o $@ command2esp.o c2espcommon.o -lcups -lcupsdriver - - myopldecode: myopldecode.o $(LIBJBG) -- $(CC) $(CFLAGS) -o $@ $@.o $(LIBJBG) -lz -+ $(CC) $(CFLAGS) $(LDFLAGS) -o $@ $@.o $(LIBJBG) -lz - - # - # Installation rules -@@ -326,3 +326,8 @@ - # - ppdc KodakESP_10.drv - ppdc KodakESP_C_06.drv -+ -+# Respect CPPFLAGS. -+.SUFFIXES: .c .o -+.c.o: -+ $(CC) -c $(CFLAGS) $(CPPFLAGS) -o '$@' '$<' |