diff --git a/griffin/griffin.c b/griffin/griffin.c index 7b912efb03..30b1f14f13 100644 --- a/griffin/griffin.c +++ b/griffin/griffin.c @@ -778,7 +778,7 @@ XML #if 0 #ifndef HAVE_LIBXML2 #define RXML_LIBXML2_COMPAT -#include "../compat/rxml/rxml.c" +#include "../libretro-sdk/formats/xml/rxml.c" #endif #endif diff --git a/libretro-sdk/formats/Makefile b/libretro-sdk/formats/xml/Makefile similarity index 75% rename from libretro-sdk/formats/Makefile rename to libretro-sdk/formats/xml/Makefile index db66a6d8d5..3c2a6e1fcb 100644 --- a/libretro-sdk/formats/Makefile +++ b/libretro-sdk/formats/xml/Makefile @@ -3,7 +3,7 @@ TARGET := rxml SOURCES := $(wildcard *.c) OBJS := $(SOURCES:.c=.o) -CFLAGS += -DRXML_TEST -Wall -pedantic -std=gnu99 -O0 -g -I../include +CFLAGS += -DRXML_TEST -Wall -pedantic -std=gnu99 -O0 -g -I../../include all: $(TARGET) diff --git a/libretro-sdk/formats/rxml.c b/libretro-sdk/formats/xml/rxml.c similarity index 100% rename from libretro-sdk/formats/rxml.c rename to libretro-sdk/formats/xml/rxml.c diff --git a/libretro-sdk/formats/rxml_test.c b/libretro-sdk/formats/xml/rxml_test.c similarity index 100% rename from libretro-sdk/formats/rxml_test.c rename to libretro-sdk/formats/xml/rxml_test.c