From e81cb8c80c8785e3537e10bb32d2ce85f087f68c Mon Sep 17 00:00:00 2001 From: NeilBrown Date: Fri, 25 Aug 2023 10:30:15 +1000 Subject: [PATCH] Move config file into new 'data' directory. Also make lib/edlib point to data, not just to '..'. This will allow the image files to be found with xdg-find-edlib-file/data. Signed-off-by: NeilBrown --- Makefile | 4 ++-- edlib.ini => data/edlib.ini | 0 modules.ini => data/modules.ini | 0 3 files changed, 2 insertions(+), 2 deletions(-) rename edlib.ini => data/edlib.ini (100%) rename modules.ini => data/modules.ini (100%) diff --git a/Makefile b/Makefile index 01ac19b2..0f1205b2 100644 --- a/Makefile +++ b/Makefile @@ -204,7 +204,7 @@ O/.exists: lib/.exists: @mkdir -p lib @ln -s ../python lib/python - @ln -s .. lib/edlib + @ln -s ../data lib/edlib @touch $@ .PHONY: lib bin @@ -258,5 +258,5 @@ checksym: edlib .PHONY: clean clean: - rm -f edlib edlib-static + rm -f edlib edlib-static rexel rm -rf lib O bin diff --git a/edlib.ini b/data/edlib.ini similarity index 100% rename from edlib.ini rename to data/edlib.ini diff --git a/modules.ini b/data/modules.ini similarity index 100% rename from modules.ini rename to data/modules.ini -- 2.39.5