чување 00a81374b4279a35a7886b232c3437869b4bc74f
родитељ 71d67e3c8981f15f0d52d396d98ed46fcc4a2a24
Аутор: Страхиња Радић <contact@strahinja.org>
Датум: Mon, 10 Apr 2023 06:28:16 +0200
*.do: Add ./ before config.redo
Signed-off-by: Страхиња Радић <contact@strahinja.org>
Diffstat:
измењених датотека: 4, додавања: 8(+), брисања: 8(-)
diff --git a/default.o.do b/default.o.do
@@ -2,7 +2,7 @@ for f in *.h; do
echo $f
done | xargs redo-ifchange
redo-ifchange $2.c
-if [ -r config.redo ]; then
- . config.redo
+if [ -r ./config.redo ]; then
+ . ./config.redo
fi
${REFLOW_CC:-gcc -g} -Wall -std=c99 -c $2.c -o $3
diff --git a/install.do b/install.do
@@ -1,6 +1,6 @@
redo-ifchange all
-if [ -r config.redo ]; then
- . config.redo
+if [ -r ./config.redo ]; then
+ . ./config.redo
fi
PREFIX=${PREFIX:-/usr/local}
BINDIR=$PREFIX/bin
diff --git a/reflow.do b/reflow.do
@@ -1,5 +1,5 @@
-if [ -r config.redo ]; then
- . config.redo
+if [ -r ./config.redo ]; then
+ . ./config.redo
fi
for f in *.h.in; do
echo $f | sed -e's/\.in$//g'
diff --git a/uninstall.do b/uninstall.do
@@ -1,6 +1,6 @@
redo-always
-if [ -r config.redo ]; then
- . config.redo
+if [ -r ./config.redo ]; then
+ . ./config.redo
fi
PREFIX=${PREFIX:-/usr/local}
BINDIR=$PREFIX/bin