1
1
there actually are some cases where we don't want to uniq-ize all
flags.  Thanks to P. Martin for raising the issue.

This commit was SVN r26955.
Этот коммит содержится в:
Jeff Squyres 2012-08-06 21:05:11 +00:00
родитель 0b7b3feba9
Коммит 7fe860c8a2

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

@ -271,6 +271,17 @@ for val in ${$1}; do
ompi_i="`expr $ompi_i + 1`"
done
# Check for special cases where we do want to allow repeated
# arguments (per
# http://www.open-mpi.org/community/lists/devel/2012/08/11362.php).
case $val in
-Xclang)
ompi_found=0
ompi_i=`expr $ompi_count + 1`
;;
esac
# If we didn't find the token, add it to the "array"
if test "$ompi_found" = "0"; then