diff options
author | Mattias Andrée <maandree@operamail.com> | 2012-08-19 19:36:00 +0200 |
---|---|---|
committer | Mattias Andrée <maandree@operamail.com> | 2012-08-19 19:36:00 +0200 |
commit | 5dde58685012ffaa5e280e025b088a0dd3395ddc (patch) | |
tree | c16d14c96661edf021f84a8979a0e5eb7c4bcfb9 /configure | |
parent | 924a2ab8edcbe6a4058a4336b7f331c3f3810727 (diff) | |
download | ponysay-5dde58685012ffaa5e280e025b088a0dd3395ddc.tar.gz ponysay-5dde58685012ffaa5e280e025b088a0dd3395ddc.tar.bz2 ponysay-5dde58685012ffaa5e280e025b088a0dd3395ddc.zip |
kms fix (however not working because of some bug in util-say)
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -223,6 +223,9 @@ function makeMakefile() echo 'install "'"$file"'" "$(INSTALLDIR)/share/licenses/ponysay/'"$file"'"' done echo + echo -en '\t' ; echo 'mkdir -p $(DESTDIR)/var/cache/ponysay/' + echo -en '\t' ; echo 'chmod 777 $(DESTDIR)/var/cache/ponysay/' + echo for completion in $completions; do shell="${completion##*/}" @@ -286,6 +289,7 @@ EOF echo echo 'uninstall:' + echo -en '\t' ; echo 'if [ -d "$(DESTDIR)/var/cache/ponysay" ]; then rm -rf "$(INSTALLDIR)/var/cache/ponysay"; fi' for old in $installedDirs; do echo -en '\t' echo 'if [ -d "$(INSTALLDIR)/'"$old"'" ]; then rm -rf "$(INSTALLDIR)/'"$old"'"; fi' |