diff options
author | Roman Leshchinskiy <rl@cse.unsw.edu.au> | 2009-11-04 01:18:30 +0000 |
---|---|---|
committer | Roman Leshchinskiy <rl@cse.unsw.edu.au> | 2009-11-04 01:18:30 +0000 |
commit | 91cb5af24ad12cd5574b4cca84ec9fb97668dceb (patch) | |
tree | 6c6487b5e469b76fbcc08776360d452a222bc9f6 /boot-pkgs | |
parent | 3501ac6af749ada0afcaf84f112ab2e4bf9120b9 (diff) | |
download | haskell-91cb5af24ad12cd5574b4cca84ec9fb97668dceb.tar.gz |
Fix non-portable regexp
Diffstat (limited to 'boot-pkgs')
-rw-r--r-- | boot-pkgs | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -53,7 +53,7 @@ for f in $libraries; do else stage=1 fi - top=`echo $f | sed 's#[^/]\+#..#g'` + top=`echo $f | sed 's#[^/][^/]*#..#g'` echo "${f}_PACKAGE = ${pkg}" >> $f/ghc.mk echo "${f}_dist-install_GROUP = libraries" >> $f/ghc.mk echo "\$(eval \$(call build-package,${f},dist-install,${stage}))" >> $f/ghc.mk |