X-Git-Url: http://git.megacz.com/?a=blobdiff_plain;f=boot;h=3cb9f6aba5514025a2e7d63ab3b5c19198ccab33;hb=431e40e1a2f795d5069d97661b7cd55f3e3b05bf;hp=2c2d88beb539f252e99279a9f02ba5ebd5c02dfd;hpb=6826a75eee4b12835fc33bdf492b6079e3c6f5b7;p=ghc-hetmet.git diff --git a/boot b/boot index 2c2d88b..3cb9f6a 100644 --- a/boot +++ b/boot @@ -50,14 +50,15 @@ for f in $libraries; do if test -f $cabals; then echo "Creating $f/ghc.mk" rm -f $f/ghc.mk - pkg=`basename ${cabals%.cabal}` + pkg=`echo "$cabals" | sed -e 's#.*/##' -e 's#\.cabal$##'` if test -f $f/ghc-stage; then stage=`cat $f/ghc-stage` 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 rm -f $f/GNUmakefile echo "Creating $f/GNUmakefile"