From: Alexander Barton Date: Sat, 4 Jan 2014 23:12:00 +0000 (+0100) Subject: Makefile.am: don't use "test -e", it isn't portable X-Git-Tag: rel-22-rc1~71 X-Git-Url: https://arthur.barton.de/cgi-bin/gitweb.cgi?p=ngircd-alex.git;a=commitdiff_plain;h=7b358a57acfbb6e70f7c63d796b1e45e86431d1f;ds=inline Makefile.am: don't use "test -e", it isn't portable --- diff --git a/Makefile.am b/Makefile.am index 0b797c13..11c382eb 100644 --- a/Makefile.am +++ b/Makefile.am @@ -69,7 +69,7 @@ osxpkg: have-packagemaker osxpkg-dest make osxpkg-clean osxpkg-clean: - [ ! -e ngircd.dest ] || sudo -n rm -rf ngircd.dest + [ ! -r ngircd.dest ] || sudo -n rm -rf ngircd.dest rm -rf ngircd.dest $(distdir).mpkg osxpkg-dest: have-xcodebuild osxpkg-clean clean