patches/ltrace/0.5/120-alpha-support.patch
author Anthony Foiani <anthony.foiani@gmail.com>
Thu Apr 26 19:55:59 2012 -0600 (2012-04-26)
changeset 2939 58974be61289
permissions -rw-r--r--
Allow multi-word "install" command.

Autoconf can determine that the correct install command includes flags,
e.g., "/usr/bin/install -c". When using this as a command, we can't
enclose the value in double-quotes, as that makes some shells use the
whole expression as a filename:

# this is the value returned by autoconf and stored in CT_install
$ ins="/usr/bin/install -c"

# if we call it with quotes, the command is not found
$ "${ins}"
bash: /usr/bin/install -c: No such file or directory

# removing the quotes lets it work as expected
$ ${ins}
/usr/bin/install: missing file operand
Try `/usr/bin/install --help' for more information.

Signed-Off-By: Anthony Foiani <anthony.foiani@gmail.com>
yann@1036
     1
diff -durN ltrace-0.4.orig/Makefile.in ltrace-0.4/Makefile.in
yann@1036
     2
--- ltrace-0.4.orig/Makefile.in	2008-10-26 15:34:21.000000000 +0100
yann@1036
     3
+++ ltrace-0.4/Makefile.in	2008-10-26 15:37:40.000000000 +0100
yann@1036
     4
@@ -5,6 +5,7 @@
yann@1036
     5
 OS		:= @HOST_OS@
yann@1036
     6
 ARCH		:= $(shell echo "@HOST_ARCH@" |sed -e s/i.86/i386/      \
yann@1036
     7
 						   -e s/sun4u/sparc64/  \
yann@1036
     8
+						   -e s/alpha.*/alpha/  \
yann@1036
     9
 						   -e s/arm.*/arm/      \
yann@1036
    10
 						   -e s/sa110/arm/      \
yann@1036
    11
 						   -e s/ppc64/ppc/      \