diff options
author | Edward Hervey <edward.hervey@collabora.co.uk> | 2012-06-06 18:11:13 +0200 |
---|---|---|
committer | Edward Hervey <edward.hervey@collabora.co.uk> | 2012-06-06 18:11:50 +0200 |
commit | d96ce2a6a7dba5c77f2da58b791a34daf6d48de1 (patch) | |
tree | 6bc6ab8cdb93b6c03ba00edac064a6689c988683 | |
parent | a68b0ded3e3ec4c79575f8988dc751c22d5d4314 (diff) |
registry: We name the registry after the target cpu
And not the host cpu
-rw-r--r-- | gst/gstregistry.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gst/gstregistry.c b/gst/gstregistry.c index e6f6f19ec..addb3e067 100644 --- a/gst/gstregistry.c +++ b/gst/gstregistry.c @@ -1641,7 +1641,7 @@ ensure_current_registry (GError ** error) registry_file = g_strdup (g_getenv ("GST_REGISTRY")); if (registry_file == NULL) { registry_file = g_build_filename (g_get_home_dir (), - ".gstreamer-" GST_MAJORMINOR, "registry." HOST_CPU ".bin", NULL); + ".gstreamer-" GST_MAJORMINOR, "registry." TARGET_CPU ".bin", NULL); } if (!_gst_disable_registry_cache) { |