Kaydet (Commit) 4fddf87e authored tarafından Ariel Constenla-Haile's avatar Ariel Constenla-Haile

Minor fixes to use $PERL properly

üst e9bfcd09
...@@ -39,7 +39,7 @@ chmod +x "$SRC_ROOT/solenv/bin/gccinstlib.pl" ...@@ -39,7 +39,7 @@ chmod +x "$SRC_ROOT/solenv/bin/gccinstlib.pl"
# fetch or update external tarballs # fetch or update external tarballs
if [ "$DO_FETCH_TARBALLS" = "yes" ]; then if [ "$DO_FETCH_TARBALLS" = "yes" ]; then
download_external_dependencies.pl $SRC_ROOT/external_deps.lst "$PERL" "$SOLARENV/bin/download_external_dependencies.pl" $SRC_ROOT/external_deps.lst
fi fi
# ------------------------------------------------------------------------------ # ------------------------------------------------------------------------------
...@@ -152,4 +152,4 @@ else ...@@ -152,4 +152,4 @@ else
fi fi
# Download missing extensions. # Download missing extensions.
download_missing_extensions.pl "$PERL" "$SOLARENV/bin/download_missing_extensions.pl"
...@@ -1539,11 +1539,11 @@ for my $repo (split(/ /,"@ADDITIONAL_REPOSITORIES@")) ...@@ -1539,11 +1539,11 @@ for my $repo (split(/ /,"@ADDITIONAL_REPOSITORIES@"))
# #
print "Setting the aliases... "; print "Setting the aliases... ";
# 1. alias for a full product make. # 1. alias for a full product make.
$mkout = '"perl $SOLARENV/bin/mkout.pl"'; $mkout = '"$PERL $SOLARENV/bin/mkout.pl"';
$deliver = '"perl $SOLARENV/bin/deliver.pl"'; $deliver = '"$PERL $SOLARENV/bin/deliver.pl"';
$build = '"perl $SOLARENV/bin/build.pl"'; $build = '"$PERL $SOLARENV/bin/build.pl"';
$build_client = '"perl $SOLARENV/bin/build_client.pl"'; $build_client = '"$PERL $SOLARENV/bin/build_client.pl"';
$zipdep = '"perl $SOLARENV/bin/zipdep.pl"'; $zipdep = '"$PERL $SOLARENV/bin/zipdep.pl"';
# 3. alias for a full product make # 3. alias for a full product make
$nmake = '"dmake"'; $nmake = '"dmake"';
print "done\n"; print "done\n";
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment