diff options
author | Ted Gould <ted@canonical.com> | 2009-10-16 14:50:37 -0500 |
---|---|---|
committer | Ted Gould <ted@canonical.com> | 2009-10-16 14:50:37 -0500 |
commit | 50e28fd237a7de7e3f28332711dc01c7fe8e4dbd (patch) | |
tree | 3aee3d9693a6f612e019acb27936ee0b985e874c | |
parent | f4f482c9f5a87ac7544e45f53f02117a50abf2d6 (diff) | |
download | libayatana-appindicator-50e28fd237a7de7e3f28332711dc01c7fe8e4dbd.tar.gz libayatana-appindicator-50e28fd237a7de7e3f28332711dc01c7fe8e4dbd.tar.bz2 libayatana-appindicator-50e28fd237a7de7e3f28332711dc01c7fe8e4dbd.zip |
Adding the possibility of making the directories silently.
-rw-r--r-- | Makefile.am.enum | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile.am.enum b/Makefile.am.enum index 0f1a637..0503de0 100644 --- a/Makefile.am.enum +++ b/Makefile.am.enum @@ -24,7 +24,7 @@ BUILT_SOURCES += $(glib_enum_h) $(glib_enum_c) EXTRA_DIST += $(enum_tmpl_h) $(enum_tmpl_c) stamp-enum-types: $(glib_enum_headers) - mkdir -p `dirname $(builddir)/$(glib_enum_h)` + $(QUIET_GEN)mkdir -p `dirname $(builddir)/$(glib_enum_h)` $(QUIET_GEN)$(GLIB_MKENUMS) \ --template $(srcdir)/$(enum_tmpl_h) \ $(glib_enum_headers) > xgen-eh \ @@ -36,7 +36,7 @@ $(glib_enum_h): stamp-enum-types @true $(glib_enum_c): $(glib_enum_h) - mkdir -p `dirname $(builddir)/$(glib_enum_c)` + $(QUIET_GEN)mkdir -p `dirname $(builddir)/$(glib_enum_c)` $(QUIET_GEN)$(GLIB_MKENUMS) \ --template $(srcdir)/$(enum_tmpl_c) \ $(glib_enum_headers) > xgen-ec \ |