mirror of
https://github.com/crash-utility/crash
synced 2025-02-10 10:26:55 +00:00
extensions/eppic.mk: Enable use of alternate eppic branch
Made significant changes and fixes to eppic. Using options in the clone command break due to args parsing. Use separate variable for clone options. Closes: https://github.com/crash-utility/crash/pull/86
This commit is contained in:
parent
c15a1e025e
commit
e61841a8b8
@ -35,10 +35,10 @@ all:
|
||||
if [ -f "$(GIT)" ]; \
|
||||
then \
|
||||
if [ -n "$(EPPIC_GIT_URL)" ]; then \
|
||||
git clone "$(EPPIC_GIT_URL)" eppic; \
|
||||
git clone $(EPPIC_GIT_OPTIONS) $(EPPIC_GIT_URL) eppic; \
|
||||
else \
|
||||
if ping -c 1 -W 5 github.com >/dev/null ; then \
|
||||
git clone https://github.com/lucchouina/eppic.git eppic; \
|
||||
git clone $(EPPIC_GIT_OPTIONS) https://github.com/lucchouina/eppic.git eppic; \
|
||||
fi; \
|
||||
fi; \
|
||||
else \
|
||||
|
Loading…
Reference in New Issue
Block a user