diff options
author | Hiroki Sato <hrs@FreeBSD.org> | 2004-08-21 21:07:48 +0000 |
---|---|---|
committer | Hiroki Sato <hrs@FreeBSD.org> | 2004-08-21 21:07:48 +0000 |
commit | 66a9db0a260056568f75f780c847035d30b5bc24 (patch) | |
tree | 87e9155abd4049170320c00bea64142c56bce561 /textproc/openjade | |
parent | 89f170948994d74298e6643d3e7b3ac63c35530d (diff) | |
download | ports-66a9db0a260056568f75f780c847035d30b5bc24.tar.gz ports-66a9db0a260056568f75f780c847035d30b5bc24.zip |
Notes
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) |