kaniini / libucontext

ucontext implementation featuring glibc-compatible ABI
Other
102 stars 41 forks source link

Fix FREESTANDING install target #46

Closed lpereira closed 1 year ago

lpereira commented 2 years ago

When installing a FREESTANDING build, the check for an empty variable was not being honored because the empty string would evaluate to nothing, making the condition pass and ultimately make the makefile target to fail. Put the variable expansion in quotes so that we have an empty string instead.

kaniini commented 1 year ago

Merged, thanks