summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVolker Sobek <reklov@live.com>2014-08-21 02:51:26 +0200
committerVolker Sobek <reklov@live.com>2014-08-21 14:28:11 +0200
commitdfcb2c9f4711cfcbd172bd54fb3891faea4821c8 (patch)
tree52f744d1a0b2eec10643ebde0e8d597c5fb5dbf5
parentf7d1394a03e6d02cd5c67f9c85a142e33f14566f (diff)
downloadnautilus-dfcb2c9f4711cfcbd172bd54fb3891faea4821c8.tar.gz
Fix typo in src/Makefile.am
This caused the stamp-nautilus-enum-types.h rule to unconditionally update nautilus-enum-types.h. https://bugzilla.gnome.org/show_bug.cgi?id=735133
-rw-r--r--src/Makefile.am2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Makefile.am b/src/Makefile.am
index 3b7a225bd..2aaea2450 100644
--- a/src/Makefile.am
+++ b/src/Makefile.am
@@ -106,7 +106,7 @@ stamp-nautilus-enum-types.h: $(headers) Makefile
--eprod "#define @ENUMPREFIX@_TYPE_@ENUMSHORT@ @enum_name@_get_type()\n" \
--eprod "GType @enum_name@_get_type (void);\n" \
$(headers) ) > xgen-gth \
- && (cmp -s xgen-gth nautilus-enum-type.h || cp xgen-gth nautilus-enum-types.h) \
+ && (cmp -s xgen-gth nautilus-enum-types.h || cp xgen-gth nautilus-enum-types.h) \
&& rm -f xgen-gth \
&& echo timestamp > $(@F)