patches/duma/2_5_8/100-cross-compile.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@369
     1
diff -durN duma_2_5_8.orig/Makefile duma_2_5_8/Makefile
yann@369
     2
--- duma_2_5_8.orig/Makefile	2007-08-17 09:34:25.000000000 +0200
yann@369
     3
+++ duma_2_5_8/Makefile	2007-09-07 21:50:04.000000000 +0200
yann@369
     4
@@ -93,9 +93,6 @@
yann@369
     5
 # also define 'WIN32'
yann@369
     6
 
yann@369
     7
 # some defaults:
yann@369
     8
-CC=gcc
yann@369
     9
-CXX=g++
yann@369
    10
-AR=ar
yann@369
    11
 INSTALL=install
yann@369
    12
 RM=rm
yann@369
    13
 RMFORCE=rm -f
yann@369
    14
@@ -281,7 +278,7 @@
yann@369
    15
 
yann@369
    16
 createconf$(EXEPOSTFIX): createconf.o
yann@369
    17
 	- $(RMFORCE) createconf$(EXEPOSTFIX)
yann@369
    18
-	$(CC) $(CFLAGS) $(DUMA_OPTIONS) createconf.o -o createconf$(EXEPOSTFIX)
yann@369
    19
+	$(HOSTCC) $(HOSTCFLAGS) $(DUMA_OPTIONS) createconf.o -o createconf$(EXEPOSTFIX)
yann@369
    20
 
yann@369
    21
 tstheap$(EXEPOSTFIX): libduma.a tstheap.o
yann@369
    22
 	- $(RMFORCE) tstheap$(EXEPOSTFIX)
yann@369
    23
@@ -338,7 +335,7 @@
yann@369
    24
 # define rules how to build objects for createconf
yann@369
    25
 #
yann@369
    26
 createconf.o:
yann@369
    27
-	$(CC) $(CFLAGS) $(DUMA_OPTIONS) -c createconf.c -o $@
yann@369
    28
+	$(HOSTCC) $(HOSTCFLAGS) $(DUMA_OPTIONS) -c createconf.c -o $@
yann@369
    29
 
yann@369
    30
 
yann@369
    31
 #