diff options
author | glarkin <glarkin@FreeBSD.org> | 2010-11-18 21:45:22 +0800 |
---|---|---|
committer | glarkin <glarkin@FreeBSD.org> | 2010-11-18 21:45:22 +0800 |
commit | a382b24376077ebd303d298d6350f27fa9f98b7c (patch) | |
tree | 796dc5a6e682074747ef98f125037203575b78d6 /print | |
parent | 708471725293ffbfa5d4f07c6ac5c244268f1d92 (diff) | |
download | freebsd-ports-gnome-a382b24376077ebd303d298d6350f27fa9f98b7c.tar.gz freebsd-ports-gnome-a382b24376077ebd303d298d6350f27fa9f98b7c.tar.zst freebsd-ports-gnome-a382b24376077ebd303d298d6350f27fa9f98b7c.zip |
- Rearranged the dependency order in the upstream Makefile to enable
building with MAKE_JOBS_SAFE=yes
PR: ports/152213
Submitted by: Matthias Andree <matthias dot andree at gmx dot de>
Diffstat (limited to 'print')
-rw-r--r-- | print/pdftk/files/patch-pdftk__Makefile.Base | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/print/pdftk/files/patch-pdftk__Makefile.Base b/print/pdftk/files/patch-pdftk__Makefile.Base new file mode 100644 index 000000000000..8fb01c665ac9 --- /dev/null +++ b/print/pdftk/files/patch-pdftk__Makefile.Base @@ -0,0 +1,29 @@ +--- ./pdftk/Makefile.Base.orig 2010-11-17 14:25:44.000000000 -0500 ++++ ./pdftk/Makefile.Base 2010-11-17 14:27:49.000000000 -0500 +@@ -29,21 +29,21 @@ + # + CPPFLAGS+= -DPDFTK_VER=\"1.44\" + +-all : javalib pdftk ++all : pdftk + + javalib : + $(MAKE) -f Makefile -iC $(JAVALIBPATH) all + +-attachments.o : attachments.cc attachments.h pdftk.h $(JAVALIB) ++attachments.o : javalib attachments.cc attachments.h pdftk.h + $(CXX) $(CPPFLAGS) $(CXXFLAGS) -I$(JAVALIBPATH) attachments.cc -c + +-report.o : report.cc report.h pdftk.h $(JAVALIB) ++report.o : javalib report.cc report.h pdftk.h + $(CXX) $(CPPFLAGS) $(CXXFLAGS) -I$(JAVALIBPATH) report.cc -c + +-pdftk.o : pdftk.cc pdftk.h attachments.h report.h $(JAVALIB) $(GCJ_LOCAL_LIB_FULL) ++pdftk.o : javalib pdftk.cc pdftk.h attachments.h report.h $(GCJ_LOCAL_LIB_FULL) + $(CXX) $(CPPFLAGS) $(CXXFLAGS) -I$(JAVALIBPATH) pdftk.cc -c + +-pdftk : pdftk.o attachments.o report.o $(JAVALIB) $(GCJ_LOCAL_LIB_FULL) ++pdftk : javalib pdftk.o attachments.o report.o $(GCJ_LOCAL_LIB_FULL) + $(CXX) $(CXXFLAGS) attachments.o report.o pdftk.o $(JAVALIB) $(GCJ_LOCAL_LIB_FULL) $(LDLIBS) -o pdftk + + install: |