diff options
Diffstat (limited to 'community/cabal/cabal-0003-use-apkbuild-downloads.patch')
-rw-r--r-- | community/cabal/cabal-0003-use-apkbuild-downloads.patch | 24 |
1 files changed, 0 insertions, 24 deletions
diff --git a/community/cabal/cabal-0003-use-apkbuild-downloads.patch b/community/cabal/cabal-0003-use-apkbuild-downloads.patch deleted file mode 100644 index b2c30bc9ea..0000000000 --- a/community/cabal/cabal-0003-use-apkbuild-downloads.patch +++ /dev/null @@ -1,24 +0,0 @@ ---- a/bootstrap.sh -+++ b/bootstrap.sh -@@ -392,18 +392,10 @@ - - if need_pkg ${PKG} ${VER_MATCH} - then -- echo -- if [ -r "${PKG}-${VER}.tar.gz" ] -- then -- echo "Using local tarball for ${PKG}-${VER}." -- else -- echo "Downloading ${PKG}-${VER}..." -- fetch_pkg ${PKG} ${VER} -- fi -- unpack_pkg ${PKG} ${VER} -- cd "${PKG}-${VER}" -+ cd "../${PKG}-${VER}" -+ cp "../${PKG}.cabal" . - install_pkg ${PKG} ${VER} -- cd .. -+ cd ../cabal-install-* - fi - } - |