Explorar el Código

[makefile] Quote argument to sed containing []

[] are shell metacharacters, and they can get confused by files in the
local directory.

Signed-off-by: H. Peter Anvin <hpa@zytor.com>
tags/v0.9.5
H. Peter Anvin hace 17 años
padre
commit
e899f100ca
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1
    1
      src/Makefile

+ 1
- 1
src/Makefile Ver fichero

71
 # If no architecture is specified in Config or on the command-line,
71
 # If no architecture is specified in Config or on the command-line,
72
 # use that of the build machine.
72
 # use that of the build machine.
73
 #
73
 #
74
-ARCH		:= $(shell uname -m | sed -e s,i[3456789]86,i386,)
74
+ARCH		:= $(shell uname -m | sed -e 's,i[3456789]86,i386,')
75
 
75
 
76
 # handle x86_64 like i386, but set -m32 option for 32bit code only
76
 # handle x86_64 like i386, but set -m32 option for 32bit code only
77
 ifeq ($(ARCH),x86_64)
77
 ifeq ($(ARCH),x86_64)

Loading…
Cancelar
Guardar