diff options
Diffstat (limited to 'print/pdftk/files/patch-java_libs__gnu__gcj__convert__Makefile')
-rw-r--r-- | print/pdftk/files/patch-java_libs__gnu__gcj__convert__Makefile | 35 |
1 files changed, 0 insertions, 35 deletions
diff --git a/print/pdftk/files/patch-java_libs__gnu__gcj__convert__Makefile b/print/pdftk/files/patch-java_libs__gnu__gcj__convert__Makefile deleted file mode 100644 index 09005f66578e..000000000000 --- a/print/pdftk/files/patch-java_libs__gnu__gcj__convert__Makefile +++ /dev/null @@ -1,35 +0,0 @@ ---- ./java_libs/gnu/gcj/convert/Makefile.orig 2006-07-26 17:13:44.000000000 -0400 -+++ ./java_libs/gnu/gcj/convert/Makefile 2010-04-08 18:13:54.000000000 -0400 -@@ -11,12 +11,14 @@ - objects= $(patsubst %.java, %.o, $(sources)) - headers= $(patsubst %.java, %.h, $(sources)) - classes= $(patsubst %.java, %.class, $(sources)) -+package:=$(shell grep ^package *.java | awk -F \; '{ print $$1 } ' | awk '{ print $$2 }' | sort -u) - - ## - # implicit rules for creating A from B - - %.o : %.java - $(GCJ) $(GCJFLAGS) -c $< -o $@ -+ ${OBJCOPY} -L '_ZGr8_$$_dummy' $@ - - %.class : %.java - $(GCJ) $(GCJFLAGS) -C $< -@@ -25,14 +27,15 @@ - # the "$*" automatic variable, here - # - %.h : %.class -- $(GCJH) --classpath="." $*; -- $(RM) $< -+ $(GCJH) -classpath ../../../.. -d ../../../.. $(package).$*; - - ## - # targets - - all : $(library) $(headers) - -+$(headers): $(classes) -+ - $(library) : $(objects) - $(AR) $(ARFLAGS) $(library) $(objects); - |