diff --git a/src/bin/sage-rebase.sh b/src/bin/sage-rebase.sh index 68f425cd1d6..e4f4caf37ed 100755 --- a/src/bin/sage-rebase.sh +++ b/src/bin/sage-rebase.sh @@ -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 diff --git a/src/bin/sage-rebaseall.sh b/src/bin/sage-rebaseall.sh index 09398ca8fbf..3b922812cc5 100755 --- a/src/bin/sage-rebaseall.sh +++ b/src/bin/sage-rebaseall.sh @@ -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