Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
D
dune-common
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Core Modules
dune-common
Commits
9e397159
Commit
9e397159
authored
17 years ago
by
Christian Engwer
Browse files
Options
Downloads
Patches
Plain Diff
fix shell string compare
[[Imported from SVN: r5117]]
parent
a9686dd2
Branches
Branches containing commit
Tags
Tags containing commit
No related merge requests found
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
m4/alugrid.m4
+1
-1
1 addition, 1 deletion
m4/alugrid.m4
m4/dune.m4
+1
-1
1 addition, 1 deletion
m4/dune.m4
m4/dune_exprtmpl.m4
+2
-2
2 additions, 2 deletions
m4/dune_exprtmpl.m4
m4/dune_mpi.m4
+1
-1
1 addition, 1 deletion
m4/dune_mpi.m4
with
5 additions
and
5 deletions
m4/alugrid.m4
+
1
−
1
View file @
9e397159
...
...
@@ -16,7 +16,7 @@ ac_save_LIBS="$LIBS"
## do nothing if no --with-alugrid was supplied
if test x$with_alugrid != x && test x$with_alugrid != xno ; then
if test x$with_alugrid =
=
xyes ; then
if test x$with_alugrid = xyes ; then
AC_MSG_ERROR([You have to provide a directory --with-alugrid=PATH])
fi
...
...
This diff is collapsed.
Click to expand it.
m4/dune.m4
+
1
−
1
View file @
9e397159
...
...
@@ -143,7 +143,7 @@ AC_DEFUN([DUNE_CHECK_MODULES],[
if
test
"x
$enable_dunelibcheck
"
!=
"xyes"
;
then
AC_MSG_WARN
([
library check
for
_dune_name is disabled. DANGEROUS!]
)
fi
if
test
x
$HAVE_
[]
_DUNE_MODULE
!=
x
-a
x
$enable_dunelibcheck
=
=
"xyes"
;
then
if
test
x
$HAVE_
[]
_DUNE_MODULE
!=
x
-a
x
$enable_dunelibcheck
=
"xyes"
;
then
# save current LDFLAGS
ac_save_LDFLAGS
=
"
$LDFLAGS
"
...
...
This diff is collapsed.
Click to expand it.
m4/dune_exprtmpl.m4
+
2
−
2
View file @
9e397159
...
...
@@ -2,10 +2,10 @@ AC_DEFUN([DUNE_EXPRTMPL],[
# enable experimental features
AC_ARG_ENABLE(expressiontemplates,
AC_HELP_STRING([--enable-exmpressiontemplates],[enable experimental expressiontemplates in dune]))
if test x$enable_expressiontemplates =
=
xyes; then
if test x$enable_expressiontemplates = xyes; then
AC_DEFINE([DUNE_EXPRESSIONTEMPLATES], [1],
[Define to 1 if the experimental expression templates should be used])
fi
AM_CONDITIONAL([EXPRESSIONTEMPLATES],
[test x$enable_expressiontemplates =
=
xyes])
[test x$enable_expressiontemplates = xyes])
])
\ No newline at end of file
This diff is collapsed.
Click to expand it.
m4/dune_mpi.m4
+
1
−
1
View file @
9e397159
...
...
@@ -85,7 +85,7 @@ AC_DEFUN([DUNE_MPI],[
with_mpi="no"
## do nothing if --disable-parallel is used
if test x$with_parallel =
=
xyes ; then
if test x$with_parallel = xyes ; then
ACX_MPI([
MPICOMP="$MPICC"
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment