diff options
author | John Wiegley <johnw@newartisans.com> | 2008-08-10 16:01:44 -0400 |
---|---|---|
committer | John Wiegley <johnw@newartisans.com> | 2008-08-10 16:01:44 -0400 |
commit | 345350c603027f8f97d24ddbc5933a3caafd5a90 (patch) | |
tree | 56bf4e9262ed488c3a1260e9b656cc103805dc1f | |
parent | 3fc2bf263f71fbec6c3d066132d64af83cef718a (diff) | |
download | ledger-345350c603027f8f97d24ddbc5933a3caafd5a90.tar.gz ledger-345350c603027f8f97d24ddbc5933a3caafd5a90.tar.bz2 ledger-345350c603027f8f97d24ddbc5933a3caafd5a90.zip |
Don't fail if growlnotify isn't present.
-rw-r--r-- | Makefile.am | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile.am b/Makefile.am index d09b9dc7..949cf24f 100644 --- a/Makefile.am +++ b/Makefile.am @@ -218,7 +218,7 @@ ledger.so: $(ledger_so_SOURCES) $(ledger_so_DEPENDENCIES) ARCHFLAGS="$(ARCHFLAGS)" PYLIBS="$(PYLIBS)" \ $(PYTHON) python/setup.py build \ --build-lib=$$BUILD_DIR/ --build-temp=$$BUILD_DIR/build -f); \ - test -x $(HOME)/bin/growlnotify && \ + @test ! -x $(HOME)/bin/growlnotify || \ growlnotify -n make -a /Applications/Utilities/Terminal.app \ -m "Build in $$BUILD_DIR completed" Ledger |