Skip to content

Commit

Permalink
[LibUV] Install subdirectory of headers
Browse files Browse the repository at this point in the history
Now that we have libuv 1.23, platform specific headers are placed under
'libuv/uv/', rather than directly under 'libuv/'n and we didn't install
them yet, but now we do.
  • Loading branch information
bdw committed Sep 4, 2018
1 parent e4b75b8 commit ccc315f
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion Configure.pl
Expand Up @@ -231,7 +231,9 @@ sub uniq {
$config{cincludes} .= ' ' . $defaults{ccinc} . '3rdparty/libuv/include'
. ' ' . $defaults{ccinc} . '3rdparty/libuv/src';
$config{install} .= "\t\$(MKPATH) \$(DESTDIR)\$(PREFIX)/include/libuv\n"
. "\t\$(CP) 3rdparty/libuv/include/*.h \$(DESTDIR)\$(PREFIX)/include/libuv\n";
. "\t\$(MKPATH) \$(DESTDIR)\$(PREFIX)/include/libuv/uv\n"
. "\t\$(CP) 3rdparty/libuv/include/*.h \$(DESTDIR)\$(PREFIX)/include/libuv\n"
. "\t\$(CP) 3rdparty/libuv/include/uv/*.h \$(DESTDIR)\$(PREFIX)/include/libuv/uv\n";
}

if ($args{'has-libatomic_ops'}) {
Expand Down

1 comment on commit ccc315f

@ugexe
Copy link
Contributor

@ugexe ugexe commented on ccc315f Sep 4, 2018

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

ugh... I must have missed a make clean before building/spec-testing the libuv update

Please sign in to comment.