diff options
author | test-tools <test-tools@d7aaf104-2d23-0410-ae22-9d23157bf5a3> | 2006-10-17 10:42:52 +0000 |
---|---|---|
committer | test-tools <test-tools@d7aaf104-2d23-0410-ae22-9d23157bf5a3> | 2006-10-17 10:42:52 +0000 |
commit | f2ad083ec7d8e6759a22135a06acda7bb150b4e4 (patch) | |
tree | 6a1914c1e07a51bbc68ada213d2909164c5f31a6 /Makefile | |
parent | bb8a4b1235ed5a5fd7f9050e1b6352e3d244332d (diff) | |
download | marex-dev-f2ad083ec7d8e6759a22135a06acda7bb150b4e4.tar.gz marex-dev-f2ad083ec7d8e6759a22135a06acda7bb150b4e4.tar.bz2 |
Added warning messages for probably old /usr/local/bin/ installed versions
git-svn-id: file:///beryl/trunk@662 d7aaf104-2d23-0410-ae22-9d23157bf5a3
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 12 |
1 files changed, 11 insertions, 1 deletions
@@ -17,7 +17,7 @@ installmodules:=$(patsubst %,%.inst-stamp,$(modules)) cleanmodules:=$(patsubst %,%.clean-stamp,$(modules)) packagemodules:=$(patsubst %,%.package-stamp,$(modules)) -all: update rebuild $(buildmodules) +all: update usrlocalcheck rebuild $(buildmodules) beryl-plugins.cfg-stamp beryl-settings.cfg-stamp emerald.cfg-stamp: beryl-core.inst-stamp @@ -26,6 +26,16 @@ beryl: update rebuild beryl-core.build-stamp beryl-plugins.build-stamp rebuild: rm -f *.build-stamp +usrlocalcheck: + for i in beryl beryl-xgl beryl-settings beryl-manager \ + beryl-settings-dump \ + emerald emerald-theme-manager; do \ + if [ -f /usr/local/bin/$$i ]; then \ + echo "Found probably old $$i in /usr/local/bin/$$i"; \ + echo " you should remove that, if you don't know exactly why it is there"; \ + fi; \ + done; + update: svn up |