From 6512e9549e31538f837fe36efe47a5b808589af4 Mon Sep 17 00:00:00 2001 From: apio Date: Fri, 10 Mar 2023 21:30:59 +0100 Subject: [PATCH] tools: Make replace-stdint.sh search in libluna/ instead of luna/ --- tools/replace-stdint.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tools/replace-stdint.sh b/tools/replace-stdint.sh index 2b42c24a..a39a3e00 100755 --- a/tools/replace-stdint.sh +++ b/tools/replace-stdint.sh @@ -6,8 +6,8 @@ source $(dirname $0)/env.sh cd $LUNA_ROOT SOURCES=($(find kernel/src -type f | grep -v "\.asm" | grep -v "bootboot.h")) -SOURCES+=($(find luna/src -type f)) -SOURCES+=($(find luna/include/luna -type f | grep -v "Types.h")) +SOURCES+=($(find libluna/src -type f)) +SOURCES+=($(find libluna/include/luna -type f | grep -v "Types.h")) for f in ${SOURCES[@]} do @@ -23,4 +23,4 @@ do sed -i 's/size_t/usize/g' $f sed -i 's/ssize_t/isize/g' $f -done \ No newline at end of file +done