mirror of
https://github.com/HDFGroup/hdf5.git
synced 2024-11-21 01:04:10 +08:00
[svn-r13647] Purpose:
bug fix. Description: If a non-existing or empty source file is used with -c option, the script ended up doing nothing and exit 0--a false success. Changed code so that it would do compile and end in error. Tested: Kagiso.
This commit is contained in:
parent
e7a398d074
commit
de71a7fe74
@ -1,5 +1,5 @@
|
||||
#! /bin/sh
|
||||
#
|
||||
##
|
||||
# Copyright by The HDF Group.
|
||||
# Copyright by the Board of Trustees of the University of Illinois.
|
||||
# All rights reserved.
|
||||
@ -12,7 +12,9 @@
|
||||
# is linked from the top-level documents page. It can also be found at
|
||||
# http://hdfgroup.org/HDF5/doc/Copyright.html. If you do not have
|
||||
# access to either file, you may request a copy from help@hdfgroup.org.
|
||||
#
|
||||
##
|
||||
|
||||
# This tool is adapted from the mpicc command of the MPICH Software.
|
||||
|
||||
############################################################################
|
||||
## ##
|
||||
@ -235,6 +237,11 @@ for arg in $@ ; do
|
||||
esac
|
||||
done
|
||||
|
||||
if test "$dash_c" = "yes" -a "$do_compile" = no -a "$do_link" = no ; then
|
||||
# -c was specified. Force do_compile on.
|
||||
do_compile=yes
|
||||
fi
|
||||
|
||||
if test "x$do_compile" = "xyes"; then
|
||||
if test "x$dash_c" != "xyes"; then
|
||||
compile_args="-c $compile_args"
|
||||
|
Loading…
Reference in New Issue
Block a user