Hi, There's an environment variable for pointing to an alternative eppic git location in eppic.mk. Unfortunatly, the way the conditions are set up it will only work if code.google.com can be ping'ed. This patch fixes this. Regards, Per
diff --git a/extensions/eppic.mk b/extensions/eppic.mk index ff60a88..866b6d9 100644 --- a/extensions/eppic.mk +++ b/extensions/eppic.mk @@ -30,12 +30,14 @@ all: then \ if [ ! -f $(APPFILE) ]; \ then \ - if [ -f "$(GIT)" ] && [ -n "$(GOOGLE)" ] ; \ + if [ -f "$(GIT)" ]; \ then \ if [ -n "$(EPPIC_GIT_URL)" ]; then \ git clone "$(EPPIC_GIT_URL)" eppic; \ else \ - git clone https://code.google.com/p/eppic eppic; \ + if [ -n "$(GOOGLE)" ] ; then \ + git clone https://code.google.com/p/eppic eppic; \ + fi; \ fi; \ else \ if [ ! -f "$(GIT)" ]; then \
-- Crash-utility mailing list Crash-utility@xxxxxxxxxx https://www.redhat.com/mailman/listinfo/crash-utility