Skip to content
This repository has been archived by the owner on Jan 30, 2023. It is now read-only.

Commit

Permalink
Include ECL .fas binaries (which are DLLs) when calling rebase(all)
Browse files Browse the repository at this point in the history
Not sure if the -s options to rebaseall are strictly needed, but it can't hurt to include.
  • Loading branch information
embray committed Apr 21, 2017
1 parent 89e6ef4 commit fcccd28
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/bin/sage-rebase.sh
Expand Up @@ -11,6 +11,6 @@
# Invoke this script from a shell after going to the SAGE_ROOT directory.

echo "Getting list of dlls. This may take a while..."
/bin/find local -name "*.dll" -o -name "*.so" > /tmp/sage-dlls.lst
/bin/find local -name "*.dll" -o -name "*.so" -o -name "*.fas" > /tmp/sage-dlls.lst
echo "Now rebasing..."
/bin/rebase -O -T /tmp/sage-dlls.lst
4 changes: 2 additions & 2 deletions src/bin/sage-rebaseall.sh
Expand Up @@ -17,6 +17,6 @@
# (which usually means admin rights).

echo "Getting list of dlls. This may take a while..."
/bin/find local -name "*.dll" -o -name "*.so" > /tmp/sage-dlls.lst
/bin/find local -name "*.dll" -o -name "*.so" -o -name "*.fas" > /tmp/sage-dlls.lst
echo "Now rebasing..."
/bin/rebaseall -T /tmp/sage-dlls.lst
/bin/rebaseall -s dll -s exe -s so -s fas -T /tmp/sage-dlls.lst

0 comments on commit fcccd28

Please sign in to comment.