чување 0b7833d329bf9ef709c768865bd4b8ddb44bc3ec
родитељ ec691e359d5bcffdb3d2fe4be156bd663af4d2f2
Аутор: Страхиња Радић <contact@strahinja.org>
Датум: Mon, 10 Apr 2023 06:27:07 +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
@@ -1,5 +1,5 @@
redo-ifchange $2.c
-if [ -r config.redo ]; then
- . config.redo
+if [ -r ./config.redo ]; then
+ . ./config.redo
fi
${SLWEB_CC:-gcc -g} -Wall -std=c99 -o $3 -c $2.c
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/slweb.do b/slweb.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