Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
D
dune-istl
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
Model registry
Operate
Environments
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-istl
Commits
0af7e69d
Commit
0af7e69d
authored
19 years ago
by
Thimo Neubauer
Browse files
Options
Downloads
Patches
Plain Diff
portability-fixes, mainly converted == operator to =
[[Imported from SVN: r289]]
parent
109ee2e2
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
configure.ac
+6
-6
6 additions, 6 deletions
configure.ac
with
6 additions
and
6 deletions
configure.ac
+
6
−
6
View file @
0af7e69d
...
...
@@ -43,7 +43,7 @@ AC_ARG_WITH(duneweb,
if test x$with_duneweb != x && test -e $with_duneweb/layout/default.wml ; then
AC_MSG_WARN([duneweb-directory seems to be wrong!])
fi
if test -d $with_duneweb ; then
if test -d
"
$with_duneweb
"
; then
with_duneweb=`(cd $with_duneweb && pwd)` ;
fi
AC_SUBST(DUNEWEBDIR, $with_duneweb)
...
...
@@ -52,19 +52,19 @@ AC_SUBST(DUNEWEBDIR, $with_duneweb)
AC_ARG_WITH(hostid,
AC_HELP_STRING([--with-hostid=HOST_IDENTIFIER],
[host identifier used for automated test runs]))
if test "x$with_hostid" =
=
"xno" ; then
if test "x$with_hostid" = "xno" ; then
with_hostid="$ac_hostname ($(uname -sm), $COMPILER_NAME)";
fi
AC_SUBST(host, $with_hostid)
AC_ARG_WITH(tag,
AC_HELP_STRING([--with-tag=TAG],
[tag to use for automated test runs]))
if test "x$with_tag" =
=
"xno" ; then with_tag=foo; fi
if test "x$with_tag" = "xno" ; then with_tag=foo; fi
AC_SUBST(tag, $with_tag)
AC_ARG_WITH(revision,
AC_HELP_STRING([--with-revision=TAG],
[revision to use for automated test runs]))
if test "x$with_revision" =
=
"xno" ; then with_revision=bar; fi
if test "x$with_revision" = "xno" ; then with_revision=bar; fi
AC_SUBST(revision, $with_revision)
echo
...
...
@@ -92,7 +92,7 @@ DUNE_PATH_PARMETIS
# create symlink for consistent paths even when $(top_srcdir) is not
# called dune/ (if filesystem/OS supports symlinks)
AC_PROG_LN_S
if test x"$LN_S" =
=
x"ln -s" ; then
if test x"$LN_S" = x"ln -s" ; then
# Symlinks possible!
# Note: we are currently in the build directory which may be != the
...
...
@@ -127,7 +127,7 @@ else
# no symlinks possible... check name of directory
# does dune-dir above exist and is it this directory?
if test -d ../dune && test `pwd` =
=
`( cd ../dune && pwd)` ; then
if test -d ../dune && test `pwd` = `( cd ../dune && pwd)` ; then
DIR=`(cd .. && pwd)`;
# use directory above current dir in include-path
AM_CPPFLAGS="-I$DIR";
...
...
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