Fix boot-pkgs's sed usage to work with Solaris's sed
[ghc-hetmet.git] / boot-pkgs
index e455426..017705b 100644 (file)
--- a/boot-pkgs
+++ b/boot-pkgs
@@ -3,7 +3,9 @@ set -e
 
 libraries=
 
-tarred=`ls -1 libraries/tarballs | sed "s/-[0-9.]*\(-snapshot\)\{0,1\}.tar.gz//"`
+# We do the sed in 3 steps, as the -snapshot may or may not be there,
+# and I can't see a way to optionally match it with POSIX BREs
+tarred=`ls -1 libraries/tarballs | sed -e 's/\.tar\.gz$//' -e 's/-snapshot$//' -e 's/-[0-9.]*$//'`
 
 for p in $tarred
 do