Skip to content

Commit

Permalink
Merge pull request #13449 from JuliaLang/sf/morethanonewaytoskina
Browse files Browse the repository at this point in the history
Fix `cat` warning messages by using file existence check instead
  • Loading branch information
tkelman committed Oct 5, 2015
2 parents 716af6f + 916f0e0 commit 02748d1
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 @@ -449,7 +449,7 @@ endif
ifeq ($(OS), Linux)
-$(JULIAHOME)/contrib/fixup-libstdc++.sh $(DESTDIR)$(private_libdir)
# We need to bundle ca certs on linux now that we're using libgit2 with ssl
ifneq ($(shell cat $(shell openssl version -d | cut -d '"' -f 2)/cert.pem),)
ifeq ($(shell [ -e $(shell openssl version -d | cut -d '"' -f 2)/cert.pem ] && echo exists),exists)
-cp $(shell openssl version -d | cut -d '"' -f 2)/cert.pem $(DESTDIR)$(datarootdir)/julia/
endif
endif
Expand Down

0 comments on commit 02748d1

Please sign in to comment.