Don't patch popen-noshell twice

This commit is contained in:
NiLuJe
2012-10-03 00:34:42 +02:00
committed by Qingping Hou
parent 8250d77390
commit 84e107313c
2 changed files with 4 additions and 2 deletions

View File

@@ -176,7 +176,7 @@ fetchthirdparty:
cd mupdf && patch -N -p1 < ../mupdf.patch
svn co http://popen-noshell.googlecode.com/svn/trunk/ popen-noshell
# popen_noshell patch: Make it build on recent TCs, and implement a simple Makefile for building it as a static lib
cd popen-noshell && patch -N -p0 < popen_noshell-buildfix.patch
cd popen-noshell && tesf -f Makefile || patch -N -p0 < popen_noshell-buildfix.patch
clean:
rm -f *.o kpdfview slider_watcher

View File

@@ -15,7 +15,7 @@ Index: Makefile
===================================================================
--- Makefile (revision 0)
+++ Makefile (working copy)
@@ -0,0 +1,15 @@
@@ -0,0 +1,17 @@
+SRCS=popen_noshell.c
+
+OBJS:=$(SRCS:%.c=%.o)
@@ -31,6 +31,8 @@ Index: Makefile
+clean:
+ rm -rf *.o
+ rm -rf libpopen_noshell.a
+
+.PHONY: clean
Property changes on: Makefile
___________________________________________________________________