~strahinja/ufold

9a45bc0d7c91f26240c3156456811f2c28d745ca — Страхиња Радић 1 year, 5 months ago 641f953
*.do: Add ./ before config.redo

Signed-off-by: Страхиња Радић <contact@strahinja.org>
4 files changed, 8 insertions(+), 8 deletions(-)

M default.o.do
M install.do
M ufold.do
M uninstall.do
M default.o.do => default.o.do +2 -2
@@ 1,5 1,5 @@
if [ -r config.redo ]; then
	. config.redo
if [ -r ./config.redo ]; then
	. ./config.redo
fi
for f in *.h; do
	echo $f

M install.do => install.do +2 -2
@@ 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

M ufold.do => ufold.do +2 -2
@@ 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'

M uninstall.do => uninstall.do +2 -2
@@ 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