Skip to content
Snippets Groups Projects
Commit dd7c977a authored by Ger van Diepen's avatar Ger van Diepen
Browse files

Task #1935 Fixed use of >&

parent e468d679
No related branches found
No related tags found
No related merge requests found
......@@ -29,11 +29,11 @@ fi
# Add path of makemsdistr, combinevds/makems, getparsetvalue, startdistproc.
# Make all of them absolute.
p1=`cd "$srcdir/../src" >& /dev/null && pwd`
p2=`cd "../src" >& /dev/null && pwd`
p3=`cd "../../../LCS/Common/src" >& /dev/null && pwd`
p4=`cd "$srcdir/../../LMWCommon/src" >& /dev/null && pwd`
p5=`cd "$srcdir/../../LMWCommxxon/src" >& /dev/null && pwd`
p1=`cd "$srcdir/../src" > /dev/null 2>&1 && pwd`
p2=`cd "../src" > /dev/null 2>&1 && pwd`
p3=`cd "../../../LCS/Common/src" > /dev/null 2>&1 && pwd`
p4=`cd "$srcdir/../../LMWCommon/src" > /dev/null 2?&1 && pwd`
p5=`cd "$srcdir/../../LMWCommxxon/src" > /dev/null 2>&1 && pwd`
PATH=".:$p1:$p2:$p3:$p4:$p5:$PATH"
export PATH
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment