Commit 580e968c authored by Felix Paul Kühne's avatar Felix Paul Kühne

* fixed previous commit

parent 9f0e70d2
......@@ -243,9 +243,9 @@ echo "EXTRA_CPPFLAGS = ${EXTRA_CPPFLAGS} -isystem \$(PREFIX)/include" >> config.
echo "EXTRA_LDFLAGS = ${EXTRA_LDFLAGS}" >> config.mak
echo "EXTRA_PATH = ${EXTRA_PATH}" >> config.mak
if which wget --version >/dev/null 2>&1; then
if wget --version >/dev/null 2>&1; then
echo "WGET = wget -c" >> config.mak
elif curl >/dev/null; then
elif which curl >/dev/null; then
echo "WGET = curl -L -O" >> config.mak
else
echo "You need at least wget or curl to fetch the packages." >&2
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment