Skip to content
Snippets Groups Projects
Commit 4990fcbc authored by Christoph Grüninger's avatar Christoph Grüninger
Browse files

[dunecontrol] Accumulate checks for environment variables.

parent 2913cb58
No related branches found
No related tags found
No related merge requests found
......@@ -6,6 +6,12 @@ set -e
###
### check for environment variables
###
if test -z "$GREP"; then
GREP=grep
fi
if test -z "$SED"; then
SED=sed
fi
if test -z "$MAKE"; then
MAKE=make
......@@ -15,6 +21,10 @@ if test -z "$CMAKE"; then
CMAKE=cmake
fi
space=" "
tab=" "
BLANK="$space$tab"
###############################################
###
### read lib
......@@ -220,16 +230,6 @@ abs_builddir()
esac
}
space=" "
tab=" "
BLANK="$space$tab"
if test -z "$GREP"; then
GREP=grep
fi
if test -z "$SED"; then
SED=sed
fi
# Uses the current compiler to extract information about the
# multiarch triplets and sets the export variable MULTIARCH_LIBDIR
# according to it.
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment