diff options
author | Bradley Sepos <[email protected]> | 2016-07-07 11:19:11 -0400 |
---|---|---|
committer | Bradley Sepos <[email protected]> | 2016-07-07 14:52:22 -0400 |
commit | 1a7534331f90fbe2fd4d37337e112b32847be43c (patch) | |
tree | 60c52a362baadc81c933700234cc7ba6656d58ab | |
parent | 4ccb032dd95e2a8f249dc503d90ee69815290bbe (diff) |
contrib: Fix bzip2 for old releases.
We recently updated bzip2-1.0.6.tar.gz to the official tarball, which extracts to a different directory (bzip2-1.0.6 instead of bzip2). Unfortunately, this breaks older commits/releases that depend on the old behavior. So restore the old tarball, and use a different name for the official tarball.
-rw-r--r-- | contrib/bzip2/module.defs | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/contrib/bzip2/module.defs b/contrib/bzip2/module.defs index b7aedf00c..89c3e3cda 100644 --- a/contrib/bzip2/module.defs +++ b/contrib/bzip2/module.defs @@ -1,9 +1,11 @@ $(eval $(call import.MODULE.defs,BZIP2,bzip2)) $(eval $(call import.CONTRIB.defs,BZIP2)) -BZIP2.FETCH.url = http://download.handbrake.fr/handbrake/contrib/bzip2-1.0.6.tar.gz +BZIP2.FETCH.url = http://download.handbrake.fr/handbrake/contrib/bzip2-1.0.6-official.tar.gz BZIP2.FETCH.url += http://www.bzip.org/1.0.6/bzip2-1.0.6.tar.gz BZIP2.FETCH.md5 = 00b516f4704d4a7cb50a1d97e6e8e15b +BZIP2.FETCH.basename = bzip2-1.0.6-official.tar.gz +BZIP2.EXTRACT.tarbase = bzip2-1.0.6 BZIP2.CONFIGURE = $(TOUCH.exe) $@ |