diff options
author | Arnaud Desmons <adesmons@mandriva.com> | 2002-08-26 13:36:26 +0000 |
---|---|---|
committer | Arnaud Desmons <adesmons@mandriva.com> | 2002-08-26 13:36:26 +0000 |
commit | eef318c4baa91379f8276d6e4c448a8a26858f24 (patch) | |
tree | 039cb39081875198d3251279569dab92ae0c49d6 /Makefile | |
parent | bd52264f669ee3b2b60470df91ee00f116dd3814 (diff) | |
download | drakwizard-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-- | Makefile | 6 |
1 files changed, 2 insertions, 4 deletions
@@ -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" \{\} \; |