Skip to content

Commit

Permalink
Avoid full-source-dist failure if no .tar.xz file is present under deps/
Browse files Browse the repository at this point in the history
Only LLVM 3.5 comes as a .tar.xz, which makes this target fail when
LLVM_VER=3.3 (the default).
  • Loading branch information
nalimilan committed Feb 20, 2015
1 parent b554ad4 commit 3b80506
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -440,7 +440,7 @@ full-source-dist source-dist: git-submodules light-source-dist.tmp

# Create file full-source-dist.tmp to hold all the filenames that go into the tarball
cp light-source-dist.tmp full-source-dist.tmp
ls deps/*.tar.gz deps/*.tar.bz2 deps/*.tar.xz deps/*.tgz deps/*.zip >> full-source-dist.tmp
-ls deps/*.tar.gz deps/*.tar.bz2 deps/*.tar.xz deps/*.tgz deps/*.zip >> full-source-dist.tmp
git submodule --quiet foreach 'git ls-files | sed "s&^&$$path/&"' >> full-source-dist.tmp

# Prefix everything with the current directory name (usually "julia"), then create tarball
Expand Down

0 comments on commit 3b80506

Please sign in to comment.