Am 26.05.2010 20:45 schrieb Bruce Stephens:
Dirk Süsserott <newsletter@xxxxxxxxxxx> writes:
[...]
I had a similar problem when "make install"ing under AIX. Not with
NO_CURL but with some other NO_* option. I forgot which.
This yealded to an empty $(REMOTE_***_ALIASES) macro
(REMOTE_CURL_ALIASES in your case) which my AIX shell cannot handle.
It reads "for p in; do" which makes it unhappy. I solved my problem
with the SHELL_PATH environment variable (look at the first few lines
in the Makefile).
$ SHELL_PATH=/bin/bash NO_SOMETHING=YesPlease make install
then worked fine for me.
It wouldn't be too horrible to fix the Makefiles, though. Doing stuff
like this works portably (judging by what some OpenSSL Makefiles do):
foo="$(REMOTE_CURL_ALIASES)"; for i in $$foo; do \
[...]
Bruce,
I just saw that Michael posted a patch which tests for the emptyness of
REMOTE_CURL_ALIASES. Probably that's a more convenient solution.
Dirk
--
To unsubscribe from this list: send the line "unsubscribe git" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html