summaryrefslogtreecommitdiff
path: root/Makefile.in
diff options
context:
space:
mode:
authorMike Frysinger <vapier@gentoo.org>2006-01-06 00:58:04 +0000
committerMike Frysinger <vapier@gentoo.org>2006-01-06 00:58:04 +0000
commite09f12b7c54969a8edfa292bf6fa003c99b98fa7 (patch)
treef1b1f2a82b9daf74649ea23228a1c260110a0a21 /Makefile.in
parent2e642f561eea4deabeb13f87bf5459dee4e9b2e4 (diff)
Jan-Benedict Glaw writes:
The "test" program (aka '[') doesn't know about the operator "==", but "=" is correct (cf. http://www.opengroup.org/onlinepubs/000095399/utilities/test.html).
Diffstat (limited to 'Makefile.in')
-rw-r--r--Makefile.in2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile.in b/Makefile.in
index eb2033cba..d75b67b40 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -107,7 +107,7 @@ RUNTIME_PREFIX_LIB_FROM_DEVEL_PREFIX_LIB=$(shell $(top_srcdir)extra/scripts/rela
# Installs header files.
install_headers:
$(INSTALL) -d $(PREFIX)$(DEVEL_PREFIX)include
- if [ "$(KERNEL_SOURCE)" == "$(DEVEL_PREFIX)" ] ; then \
+ if [ "$(KERNEL_SOURCE)" = "$(DEVEL_PREFIX)" ] ; then \
extra_exclude="--exclude include/linux --exclude include/asm'*'" ; \
else \
extra_exclude="" ; \