diff options
author | Mike Frysinger <vapier@gentoo.org> | 2006-01-06 00:58:04 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2006-01-06 00:58:04 +0000 |
commit | e09f12b7c54969a8edfa292bf6fa003c99b98fa7 (patch) | |
tree | f1b1f2a82b9daf74649ea23228a1c260110a0a21 | |
parent | 2e642f561eea4deabeb13f87bf5459dee4e9b2e4 (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).
-rw-r--r-- | Makefile.in | 2 |
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="" ; \ |