Patrick Rudolph has uploaded this change for review. ( https://review.coreboot.org/27136
Change subject: tianocore: Fix RPM package name ......................................................................
tianocore: Fix RPM package name
The packge uuid-devel doesn't provide the required files, but libuuid-devel does.
Change-Id: I61d537e4f1fca0d7172c129a75e13aa58452763f Signed-off-by: Patrick Rudolph siro@das-labor.org --- M payloads/external/tianocore/Makefile 1 file changed, 1 insertion(+), 1 deletion(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/36/27136/1
diff --git a/payloads/external/tianocore/Makefile b/payloads/external/tianocore/Makefile index c942d30e..2f770d2 100644 --- a/payloads/external/tianocore/Makefile +++ b/payloads/external/tianocore/Makefile @@ -78,7 +78,7 @@ echo "#include <uuid/uuid.h>" > libtest.c echo "int main(int argc, char **argv) { (void) argc; (void) argv; return 0; }" >> libtest.c $(HOSTCC) $(HOSTCCFLAGS) libtest.c -o libtest >/dev/null 2>&1 && echo " found uuid-dev." || \ - ( echo " Not found."; echo "ERROR: please_install uuid-dev (uuid-devel)"; exit 1 ) + ( echo " Not found."; echo "ERROR: please_install uuid-dev (libuuid-devel)"; exit 1 ) rm -rf libtest.c libtest echo "Checking nasm..." type nasm > /dev/null 2>&1 && echo " found nasm." || \