From 3c2a7fa6cf118f6e0fbda8babac7aff988574384 Mon Sep 17 00:00:00 2001 From: Ian Lynagh Date: Thu, 1 Apr 2010 15:34:41 +0000 Subject: [PATCH] Fix boot-pkgs's sed usage to work with Solaris's sed --- boot-pkgs | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/boot-pkgs b/boot-pkgs index e455426..017705b 100644 --- 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 -- 1.7.10.4