summaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorArnaud Desmons <adesmons@mandriva.com>2002-08-26 13:36:26 +0000
committerArnaud Desmons <adesmons@mandriva.com>2002-08-26 13:36:26 +0000
commiteef318c4baa91379f8276d6e4c448a8a26858f24 (patch)
tree039cb39081875198d3251279569dab92ae0c49d6 /Makefile
parentbd52264f669ee3b2b60470df91ee00f116dd3814 (diff)
downloaddrakwizard-eef318c4baa91379f8276d6e4c448a8a26858f24.tar
drakwizard-eef318c4baa91379f8276d6e4c448a8a26858f24.tar.gz
drakwizard-eef318c4baa91379f8276d6e4c448a8a26858f24.tar.bz2
drakwizard-eef318c4baa91379f8276d6e4c448a8a26858f24.tar.xz
drakwizard-eef318c4baa91379f8276d6e4c448a8a26858f24.zip
s/perl -pe -i/perl -i -pe/
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile6
1 files changed, 2 insertions, 4 deletions
diff --git a/Makefile b/Makefile
index 11913748..963605ea 100644
--- a/Makefile
+++ b/Makefile
@@ -21,7 +21,6 @@ WIZ = common\
all:
-
# installs all the wizards...
install:
@@ -31,8 +30,7 @@ install:
$(MAKE) -C $$l $@; \
done
find ${prefix}/share/wizards -regex ".*\.wiz$$\|.*.pm$$\|.*\.sh$$" -exec \
- perl -pi -e "s|__WIZ_HOME__|/usr/share/wizards|g" \{\} \;
-
+ perl -i -pe "s|__WIZ_HOME__|/usr/share/wizards|g" \{\} \;
clean:
$(MAKE) -C po $@
@@ -57,4 +55,4 @@ test: clean_test
cp -r $(WIZ) test
cp Wizard.dtd Makefile drakwizard.pl drakwizard.spec test
find test -regex ".*\.wiz$$\|.*\.pm$$\|.*\.sh$$" -exec \
- perl -pi -e "s|__WIZ_HOME__|$(PWD)/test|g" \{\} \;
+ perl -i -pe "s|__WIZ_HOME__|$(PWD)/test|g" \{\} \;