diff options
Diffstat (limited to 'textproc/openjade')
-rw-r--r-- | textproc/openjade/files/patch-ad | 15 |
1 files changed, 13 insertions, 2 deletions
diff --git a/textproc/openjade/files/patch-ad b/textproc/openjade/files/patch-ad index fca2de38d47f..89550f364ec5 100644 --- a/textproc/openjade/files/patch-ad +++ b/textproc/openjade/files/patch-ad @@ -1,6 +1,17 @@ --- Makefile.prog.in.orig Tue Jan 22 20:57:53 2002 -+++ Makefile.prog.in Fri Mar 15 15:29:12 2002 -@@ -25,7 +25,7 @@ ++++ Makefile.prog.in Sun Aug 22 05:48:16 2004 +@@ -12,7 +12,9 @@ + + ALL_LIBS = $(XLIBS) $(LIBS) + Makefile.lt: +- echo 'LT_LIBS='`echo $(ALL_LIBS)|sed 's/\.a/.la/g'` >Makefile.lt ++ echo 'LT_LIBS='`echo "$(ALL_LIBS)" | sed -e "s/\.a/.la/g" -e "s,[^ ]*libosp\.la[^ ]*,,"` "\\" >Makefile.lt ++ echo " " `echo "$(ALL_LIBS)" | awk '{print $$4}'` >> Makefile.lt ++# echo 'LT_LIBS='`echo $(ALL_LIBS)|sed 's/\.a/.la/g'` >Makefile.lt + + PROG:=$(shell echo "$(PROG)" | sed '@program_transform_name@') + +@@ -25,7 +27,7 @@ -test -d $(DESTDIR)$(bindir) || \ (mkdir $(DESTDIR)$(bindir); chmod 755 $(DESTDIR)$(bindir)) -rm -f $(DESTDIR)$(bindir)/$(PROG) |