BaseTools: remove useless dependency on libuuid

Signed-off-by: Thierry LARONDE <tlaronde@polynum.com>
Reviewed-by: Liming Gao <gaoliming@byosoft.com.cn>
This commit is contained in:
Thierry LARONDE 2023-01-31 19:14:21 +01:00 committed by mergify[bot]
parent aea8a9c954
commit aef0061ac2
2 changed files with 1 additions and 10 deletions

View File

@ -14,10 +14,6 @@ include $(MAKEROOT)/Makefiles/app.makefile
LIBS = -lCommon LIBS = -lCommon
ifeq ($(CYGWIN), CYGWIN) ifeq ($(CYGWIN), CYGWIN)
LIBS += -L/lib/e2fsprogs -luuid LIBS += -L/lib/e2fsprogs
endif
ifeq ($(LINUX), Linux)
LIBS += -luuid
endif endif

View File

@ -14,11 +14,6 @@ SPDX-License-Identifier: BSD-2-Clause-Patent
// Include files // Include files
// //
#if defined(__FreeBSD__)
#include <uuid.h>
#elif defined(__GNUC__)
#include <uuid/uuid.h>
#endif
#ifdef __GNUC__ #ifdef __GNUC__
#include <sys/stat.h> #include <sys/stat.h>
#endif #endif