You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
curl up to 7.45.0 could be built without perl and GNU make (BSD make was fine).
In 7.46.0, the zsh support in scripts/ made both of these tools necessary.
gmake[1]: Entering directory '/scratch/www/curl/work/curl-7.46.0/scripts'
/usr/pkg/bin/perl zsh.pl > _curl
curl: not found
Use of uninitialized value $opts_str in scalar chomp at zsh.pl line 16.
Use of uninitialized value $opts_str in concatenation (.) or string at zsh.pl line 18.
This is an explicit rule that uses "$<". The man page for BSD make (on NetBSD) says about "$<":
.IMPSRC In suffix-transformation rules, the name/path of the
source from which the target is to be transformed (the
``implied'' source); also known as `<'. It is not
defined in explicit rules.
I.e., it's supported only in implicit rules.
I suggest just using "zsh.pl" instead of "$<".
About perl: perhaps there is a way to use awk or sed instead. Either way, the warnings should be fixed, and it should be passed a path to curl.
The text was updated successfully, but these errors were encountered:
centminmod
added a commit
to centminmod/docker-ubuntu-nghttp2
that referenced
this issue
Dec 8, 2015
curl up to 7.45.0 could be built without perl and GNU make (BSD make was fine).
In 7.46.0, the zsh support in scripts/ made both of these tools necessary.
About GNU make: The new Makefile rule is:
This is an explicit rule that uses "$<". The man page for BSD make (on NetBSD) says about "$<":
I.e., it's supported only in implicit rules.
I suggest just using "zsh.pl" instead of "$<".
About perl: perhaps there is a way to use awk or sed instead. Either way, the warnings should be fixed, and it should be passed a path to curl.
The text was updated successfully, but these errors were encountered: