Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
Alex D
GHC
Commits
3c2a7fa6
Commit
3c2a7fa6
authored
Apr 01, 2010
by
Ian Lynagh
Browse files
Fix boot-pkgs's sed usage to work with Solaris's sed
parent
db9f94f7
Changes
1
Hide whitespace changes
Inline
Side-by-side
boot-pkgs
View file @
3c2a7fa6
...
...
@@ -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
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment