diff options
author | Frederic Crozat <fcrozat@mandriva.com> | 2002-08-22 16:36:52 +0000 |
---|---|---|
committer | Frederic Crozat <fcrozat@mandriva.com> | 2002-08-22 16:36:52 +0000 |
commit | 8cb296dff1704b8b7247ebe8635a54e8336edb58 (patch) | |
tree | 4bd459fded1b169683083342e433debb98e16e9c /Makefile | |
parent | 232ed05f74df058f955466b13b779e2624fd8f22 (diff) | |
download | drakwizard-8cb296dff1704b8b7247ebe8635a54e8336edb58.tar drakwizard-8cb296dff1704b8b7247ebe8635a54e8336edb58.tar.gz drakwizard-8cb296dff1704b8b7247ebe8635a54e8336edb58.tar.bz2 drakwizard-8cb296dff1704b8b7247ebe8635a54e8336edb58.tar.xz drakwizard-8cb296dff1704b8b7247ebe8635a54e8336edb58.zip |
Fix search and replace for __WIZ_HOME__ and fix wrongly committed files
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 8 |
1 files changed, 6 insertions, 2 deletions
@@ -19,16 +19,20 @@ WIZ = common\ data\ po +all: + + # installs all the wizards... install: - find -regex ".*\.wiz$$\|.*.pm$$\|.*\.sh$$" -exec \ - perl -pi -e "s|__WIZ_HOME__|/usr/share/wizards|g" \{\} \; mkdir -p ${prefix}/sbin install -p drakwizard.pl ${prefix}/sbin/drakwizard for l in $(WIZ); do \ $(MAKE) -C $$l $@; \ done + find ${prefix}/share/wizards -regex ".*\.wiz$$\|.*.pm$$\|.*\.sh$$" -exec \ + perl -pi -e "s|__WIZ_HOME__|/usr/share/wizards|g" \{\} \; + clean: $(MAKE) -C po $@ |