summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTimur Bakeyev <timur@gnu.org>2001-03-12 01:08:18 +0000
committerTimur I. Bakeyev <timur@src.gnome.org>2001-03-12 01:08:18 +0000
commitd97945c2830e28b0d7f1856efab2d00a5e02c835 (patch)
tree7836d9f06542f0d5bcd15275e1cc50afd5a5e443
parent6dc144156f0832fd41f203e9e82f1a78e95938cf (diff)
downloadgconf-d97945c2830e28b0d7f1856efab2d00a5e02c835.tar.gz
Made warning printing a bit nicer.
2001-03-12 Timur Bakeyev <timur@gnu.org> * Makefile.am: Made warning printing a bit nicer.
-rw-r--r--ChangeLog4
-rw-r--r--Makefile.am18
2 files changed, 13 insertions, 9 deletions
diff --git a/ChangeLog b/ChangeLog
index 2ab7d372..c8b95117 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2001-03-12 Timur Bakeyev <timur@gnu.org>
+
+ * Makefile.am: Made warning printing a bit nicer.
+
2001-03-06 Havoc Pennington <hp@redhat.com>
Merge from stable.
diff --git a/Makefile.am b/Makefile.am
index 60b02025..71d6928e 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -7,23 +7,23 @@ EXTRA_DIST=gconf-config.in gconf.m4.in gconf.spec.in gconf.spec TODO
WARNING_MESSAGE="If this is your first install of GConf, you may need to move $(prefix)/etc/gconf/$(MAJOR_VERSION)/path.example to $(prefix)/etc/gconf/$(MAJOR_VERSION)/path, so that the default configuration is sane. If you are already using GConf, you may need to move your old configuration into place if $(MAJOR_VERSION) is not the same as your old version."
all-local:
- echo "**** NOTE ****" && \
- echo $(WARNING_MESSAGE) && \
- echo "**************"
+ @echo "**** NOTE ****"
+ @echo $(WARNING_MESSAGE)
+ @echo "**************"
install-exec-local:
$(INSTALL_SCRIPT) gconf-config $(DESTDIR)$(bindir)/gconf-config-$(MAJOR_VERSION)
(cd $(DESTDIR)$(bindir) && $(LN_S) -f gconf-config-$(MAJOR_VERSION) gconf-config)
- echo "**** NOTE ****" && \
- echo $(WARNING_MESSAGE) && \
- echo "**************"
+ @echo "**** NOTE ****"
+ @echo $(WARNING_MESSAGE)
+ @echo "**************"
install-data-local:
-mkdir -p $(DESTDIR)$(datadir)/aclocal
$(INSTALL_DATA) gconf.m4 $(DESTDIR)$(datadir)/aclocal/gconf-$(MAJOR_VERSION).m4
- echo "**** NOTE ****" && \
- echo $(WARNING_MESSAGE) && \
- echo "**************"
+ @echo "**** NOTE ****"
+ @echo $(WARNING_MESSAGE)
+ @echo "**************"
install-schemas:
(cd standard-schemas && $(MAKE) $(AM_MAKEFLAGS) install-schemas)