diff options
Diffstat (limited to 'examples')
-rwxr-xr-x | examples/run-all-ex.sh | 4 | ||||
-rwxr-xr-x | examples/run-c-ex.sh.in | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/examples/run-all-ex.sh b/examples/run-all-ex.sh index 6837c7e..4ff2c55 100755 --- a/examples/run-all-ex.sh +++ b/examples/run-all-ex.sh @@ -24,8 +24,8 @@ # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # -if (echo "Run c examples" && \ - (cd c; sh ./run-c-ex.sh) && \ +echo "Run c examples" +if ((cd c; sh ./run-c-ex.sh) && \ (if test -d fortran; then echo "Run fortran examples" cd fortran; sh ./run-fortran-ex.sh diff --git a/examples/run-c-ex.sh.in b/examples/run-c-ex.sh.in index 0627eb8..8d0bdcd 100755 --- a/examples/run-c-ex.sh.in +++ b/examples/run-c-ex.sh.in @@ -32,8 +32,8 @@ EXIT_SUCCESS=0 EXIT_FAILURE=1 # Where the tool is installed. -# Note: no '/' after DESTDIR. Explanation in commence.am -prefix="${prefix:-${DESTDIR}@prefix@}" +# default is relative path to installed location of the tools +prefix="${prefix:-../../../}" PARALLEL=@PARALLEL@ # Am I in parallel mode? AR="@AR@" RANLIB="@RANLIB@" |