diff options
author | Mattias Andrée <maandree@operamail.com> | 2012-08-20 16:51:00 +0200 |
---|---|---|
committer | Mattias Andrée <maandree@operamail.com> | 2012-08-20 16:51:00 +0200 |
commit | aa952d266ada57d0d7093df6b1b9421318c5654f (patch) | |
tree | 5ffd8b739931f4886889e64ebf1721ad1397d6e7 /configure | |
parent | 4ee415dab1ee532e086d39afc1efa7af3096fc2b (diff) | |
download | ponysay-aa952d266ada57d0d7093df6b1b9421318c5654f.tar.gz ponysay-aa952d266ada57d0d7093df6b1b9421318c5654f.tar.bz2 ponysay-aa952d266ada57d0d7093df6b1b9421318c5654f.zip |
cache clean fix (no $DESTDIR)
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -213,7 +213,7 @@ function makeMakefile() echo 'install "'"$file"'" "$(INSTALLDIR)/share/licenses/ponysay/'"$file"'"' done echo - echo -en '\t' ; echo 'if [ -d "$(DESTDIR)/var/cache/ponysay" ]; then rm -r "$(DESTDIR)/var/cache/ponysay"; fi' + echo -en '\t' ; echo 'if [ -d "/var/cache/ponysay" ]; then rm -r "/var/cache/ponysay"; fi' echo -en '\t' ; echo 'mkdir -p $(DESTDIR)/var/cache/ponysay/' echo -en '\t' ; echo 'chmod 777 $(DESTDIR)/var/cache/ponysay/' echo |