Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions cmnvars.sh
Original file line number Diff line number Diff line change
Expand Up @@ -28,11 +28,11 @@ export OWDISTRDIR=$OWROOT/distrib
# Set environment variables
# Set up default path information variable
if [ -z "$OWDEFPATH" ]; then
export OWDEFPATH=$PATH:
export OWDEFPATH="$PATH":
if [ -n "$INCLUDE" ]; then export OWDEFINCLUDE=$INCLUDE; fi
if [ -n "$WATCOM" ]; then export OWDEFWATCOM=$WATCOM; fi
fi
export PATH=$OWBINDIR:$OWROOT/build:$OWDEFPATH
export PATH="$OWBINDIR:$OWROOT/build:$OWDEFPATH"
if [ -n "$OWDEFINCLUDE" ]; then export INCLUDE=$OWDEFINCLUDE; fi
if [ -n "$OWDEFWATCOM" ]; then export WATCOM=$OWDEFWATCOM; fi

Expand Down