Skip to content

Commit 3f0adc6

Browse files
committed
Merge branch 'master' of github.com:JuliaLang/julia
2 parents 359efd8 + d42b141 commit 3f0adc6

File tree

2 files changed

+11
-3
lines changed

2 files changed

+11
-3
lines changed

LICENSE.md

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,6 @@ Julia is licensed under the MIT License:
2626
2727
External libraries, if used, include their own licenses:
2828

29-
- [7-Zip](http://www.7-zip.org/license.txt)
3029
- [AMOS](http://www.netlib.org/slatec/guide)
3130
- [ARPACK](http://www.caam.rice.edu/software/ARPACK/RiceBSD.txt#LICENSE)
3231
- [ATLAS](http://math-atlas.sourceforge.net/faq.html#license)
@@ -37,7 +36,6 @@ External libraries, if used, include their own licenses:
3736
- [FADDEEVA](http://ab-initio.mit.edu/Faddeeva)
3837
- [FEMTOLISP](https://github.com/JeffBezanson/femtolisp)
3938
- [FFTW](http://fftw.org/doc/License-and-Copyright.html)
40-
- [GIT](http://git-scm.com/about/free-and-open-source)
4139
- [GMP](http://gmplib.org/manual/Copying.html#Copying)
4240
- [LAPACK](http://netlib.org/lapack/LICENSE.txt)
4341
- [LIBEXPAT](http://expat.cvs.sourceforge.net/viewvc/expat/expat/README)
@@ -51,3 +49,9 @@ External libraries, if used, include their own licenses:
5149
- [RMATH](http://www.r-project.org/Licenses/)
5250
- [SUITESPARSE](http://www.cise.ufl.edu/research/sparse/SuiteSparse/current/SuiteSparse/)
5351
- [ZLIB](http://zlib.net/zlib_license.html)
52+
53+
Julia bundles the following as external executables on some platforms:
54+
55+
- [7-Zip](http://www.7-zip.org/license.txt)
56+
- [BUSYBOX](https://github.com/rmyorston/busybox-w32/blob/master/LICENSE)
57+
- [GIT](http://git-scm.com/about/free-and-open-source)

Makefile

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -274,7 +274,9 @@ ifeq ($(OS), WINNT)
274274
[ ! -d dist-extras ] || ( cd dist-extras && \
275275
cp 7z.exe 7z.dll libexpat-1.dll zlib1.dll $(bindir) && \
276276
mkdir $(DESTDIR)$(prefix)/Git && \
277-
7z x PortableGit.7z -o"$(DESTDIR)$(prefix)/Git" )
277+
7z x PortableGit.7z -o"$(DESTDIR)$(prefix)/Git" && \
278+
cp busybox.exe $(DESTDIR)$(prefix)/Git/bin/echo.exe && \
279+
cp busybox.exe $(DESTDIR)$(prefix)/Git/bin/printf.exe )
278280
cd $(DESTDIR)$(bindir) && rm -f llvm* llc.exe lli.exe opt.exe LTO.dll bugpoint.exe macho-dump.exe
279281
$(call spawn,./dist-extras/nsis/makensis.exe) -NOCD -DVersion=$(JULIA_VERSION) -DArch=$(ARCH) -DCommit=$(JULIA_COMMIT) ./contrib/windows/build-installer.nsi
280282
./dist-extras/7z a -mx9 "julia-install-$(JULIA_COMMIT)-$(ARCH).7z" julia-installer.exe
@@ -390,10 +392,12 @@ endif
390392
cd dist-extras && \
391393
$(JLDOWNLOAD) http://downloads.sourceforge.net/sevenzip/7z920_extra.7z && \
392394
$(JLDOWNLOAD) https://unsis.googlecode.com/files/nsis-2.46.5-Unicode-setup.exe && \
395+
$(JLDOWNLOAD) ftp://ftp.tigress.co.uk/public/gpl/6.0.0/busybox/busybox.exe && \
393396
chmod a+x 7z.exe && \
394397
chmod a+x 7z.dll && \
395398
$(call spawn,./7z.exe) x -y -onsis nsis-2.46.5-Unicode-setup.exe && \
396399
chmod a+x ./nsis/makensis.exe && \
400+
chmod a+x busybox.exe && \
397401
7z x -y mingw-libexpat.rpm -so > mingw-libexpat.cpio && \
398402
7z e -y mingw-libexpat.cpio && \
399403
7z x -y mingw-zlib.rpm -so > mingw-zlib.cpio && \

0 commit comments

Comments
 (0)