Browse Source

liblzma: Avoid importing upstream makefiles

Brad King 7 years ago
parent
commit
78ec8b7552
1 changed files with 3 additions and 1 deletions
  1. 3 1
      Utilities/Scripts/update-liblzma.bash

+ 3 - 1
Utilities/Scripts/update-liblzma.bash

@@ -7,7 +7,7 @@ shopt -s dotglob
 readonly name="liblzma"
 readonly ownership="liblzma upstream <[email protected]>"
 readonly subtree="Utilities/cmliblzma"
-readonly repo="http://git.tukaani.org/xz.git"
+readonly repo="https://git.tukaani.org/xz.git"
 readonly tag="v5.0.8"
 readonly shortlog=false
 readonly paths="
@@ -24,6 +24,8 @@ extract_source () {
     mv src/common .
     mv src/liblzma .
     rmdir src
+    rm liblzma/Makefile.*
+    rm liblzma/*/Makefile.*
     popd
 }