1
1

Rearrange ordering of redirection

This prevents "/usr/bin/which: no oshmem_info ..." messages from
appearing.

cmr=v1.7.5:reviewer=rhc

This commit was SVN r31067.
Этот коммит содержится в:
Jeff Squyres 2014-03-14 15:23:18 +00:00
родитель cf9f5f9c4c
Коммит 8e8154645b

Просмотреть файл

@ -10,7 +10,7 @@
# Copyright (c) 2004-2005 The Regents of the University of California. # Copyright (c) 2004-2005 The Regents of the University of California.
# All rights reserved. # All rights reserved.
# Copyright (c) 2006-2007 Sun Microsystems, Inc. All rights reserved. # Copyright (c) 2006-2007 Sun Microsystems, Inc. All rights reserved.
# Copyright (c) 2011-2012 Cisco Systems, Inc. All rights reserved. # Copyright (c) 2011-2014 Cisco Systems, Inc. All rights reserved.
# Copyright (c) 2012 Los Alamos National Security, Inc. All rights reserved. # Copyright (c) 2012 Los Alamos National Security, Inc. All rights reserved.
# Copyright (c) 2013 Mellanox Technologies, Inc. All rights reserved. # Copyright (c) 2013 Mellanox Technologies, Inc. All rights reserved.
# $COPYRIGHT$ # $COPYRIGHT$
@ -68,10 +68,10 @@ EXAMPLES = \
# bindings. # bindings.
all: hello_c ring_c connectivity_c all: hello_c ring_c connectivity_c
@ if which ompi_info 2>&1 >/dev/null; then \ @ if which ompi_info >/dev/null 2>&1 ; then \
$(MAKE) mpi; \ $(MAKE) mpi; \
fi fi
@ if which oshmem_info 2>&1 >/dev/null; then \ @ if which oshmem_info >/dev/null 2>&1 ; then \
$(MAKE) oshmem; \ $(MAKE) oshmem; \
fi fi