diff options
author | Kirill Ponomarev <krion@FreeBSD.org> | 2004-07-28 09:08:09 +0000 |
---|---|---|
committer | Kirill Ponomarev <krion@FreeBSD.org> | 2004-07-28 09:08:09 +0000 |
commit | 4dff00bd77a1c13f91e0381bb8a2ed2883661614 (patch) | |
tree | 048b9cbcfd7e142507f45da347b4d9c13c42961a /x11/xterm/files/patch-Makefile.in | |
parent | Register extensions in etc/php/extensions.ini instead of etc/php.ini (diff) |
Update to version 194
Diffstat (limited to '')
-rw-r--r-- | x11/xterm/files/patch-Makefile.in | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/x11/xterm/files/patch-Makefile.in b/x11/xterm/files/patch-Makefile.in new file mode 100644 index 000000000000..e3649cbe5ba6 --- /dev/null +++ b/x11/xterm/files/patch-Makefile.in @@ -0,0 +1,36 @@ + +$FreeBSD$ + +--- Makefile.in.orig Tue Jul 13 02:41:24 2004 ++++ Makefile.in Wed Jul 28 10:59:16 2004 +@@ -141,9 +141,9 @@ + TRANSFORM = sed 's/$x$$//'|sed '$(transform)'|sed 's/$$/$x/' + actual_xterm = `echo xterm| sed '$(transform)'` + actual_resize = `echo resize| sed '$(transform)'` +-binary_xterm = `echo xterm$x| $(TRANSFORM)` +-binary_resize = `echo resize$x| $(TRANSFORM)` +-binary_uxterm = `echo uxterm| $(TRANSFORM)` ++binary_xterm = `echo xterm-static$x| $(TRANSFORM)` ++binary_resize = `echo resize-static$x| $(TRANSFORM)` ++binary_uxterm = `echo uxterm-static| $(TRANSFORM)` + + install \ + install-bin \ +@@ -163,13 +163,13 @@ + install-full :: $(APPSDIR) + @echo installing $(APPSDIR)/$(CLASS) + @sed -e s/XTerm/$(CLASS)/ $(srcdir)/XTerm.ad >XTerm.tmp +- @$(INSTALL_DATA) XTerm.tmp $(APPSDIR)/$(CLASS) ++ @$(INSTALL_DATA) XTerm.tmp $(APPSDIR)/XTerm-static + @echo installing $(APPSDIR)/$(CLASS)-color + @sed -e s/XTerm/$(CLASS)/ $(srcdir)/XTerm-col.ad >XTerm.tmp +- @$(INSTALL_DATA) XTerm.tmp $(APPSDIR)/$(CLASS)-color +- @echo installing $(APPSDIR)/UXTerm ++ @$(INSTALL_DATA) XTerm.tmp $(APPSDIR)/$(CLASS)-color-static ++ @echo installing $(APPSDIR)/UXTerm-static + @sed -e s/XTerm/$(CLASS)/ $(srcdir)/UXTerm.ad >XTerm.tmp +- @$(INSTALL_DATA) XTerm.tmp $(APPSDIR)/UXTerm ++ @$(INSTALL_DATA) XTerm.tmp $(APPSDIR)/UXTerm-static + @rm -f XTerm.tmp + + install :: |