diff options
Diffstat (limited to 'package/xterm/patches/patch-Makefile_in')
-rw-r--r-- | package/xterm/patches/patch-Makefile_in | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/package/xterm/patches/patch-Makefile_in b/package/xterm/patches/patch-Makefile_in new file mode 100644 index 000000000..1282767e2 --- /dev/null +++ b/package/xterm/patches/patch-Makefile_in @@ -0,0 +1,22 @@ + Fix shell compatibility problem. Note: this is rather hacky, as it + changes the actual semantics of the code - instead of evaluating the + shell statement when being used as parameter to a command, now the + $(shell) function is being used and therefore the result computed at + variable assignment stage. +--- xterm-259.orig/Makefile.in 2010-04-05 00:41:32.000000000 +0200 ++++ xterm-259/Makefile.in 2010-06-06 22:35:13.384934404 +0200 +@@ -175,10 +175,10 @@ resize$x : $(OBJS2) + + charproc$o : main.h @CHARPROC_DEPS@ + ################################################################################ +-actual_xterm = `echo xterm| sed '$(transform)'` +-actual_resize = `echo resize| sed '$(transform)'` +-actual_uxterm = `echo uxterm| sed '$(transform)'` +-actual_k8term = `echo koi8rxterm| sed '$(transform)'` ++actual_xterm = $(shell echo xterm| sed '$(transform)') ++actual_resize = $(shell echo resize| sed '$(transform)') ++actual_uxterm = $(shell echo uxterm| sed '$(transform)') ++actual_k8term = $(shell echo koi8rxterm| sed '$(transform)') + + binary_xterm = $(actual_xterm)$x + binary_resize = $(actual_resize)$x |