From 0b1c7320ab32ef34bce45238c5d75fbf339bfd35 Mon Sep 17 00:00:00 2001 From: Rico Tzschichholz Date: Fri, 21 May 2010 13:06:21 +0200 Subject: [PATCH] Fix "make distcheck" - add missing reference for scripting.js - properly add js/perf/* https://bugzilla.gnome.org/show_bug.cgi?id=619276 --- configure.ac | 1 + js/Makefile.am | 2 +- js/perf/Makefile.am | 4 ++++ js/ui/Makefile.am | 1 + 4 files changed, 7 insertions(+), 1 deletion(-) create mode 100644 js/perf/Makefile.am diff --git a/configure.ac b/configure.ac index ef833dd24..43b526cc5 100644 --- a/configure.ac +++ b/configure.ac @@ -155,6 +155,7 @@ AC_CONFIG_FILES([ js/Makefile js/misc/Makefile js/ui/Makefile + js/perf/Makefile js/prefs/Makefile src/Makefile tests/Makefile diff --git a/js/Makefile.am b/js/Makefile.am index ab54b60ab..142793cf6 100644 --- a/js/Makefile.am +++ b/js/Makefile.am @@ -1 +1 @@ -SUBDIRS = misc ui prefs +SUBDIRS = misc ui perf prefs diff --git a/js/perf/Makefile.am b/js/perf/Makefile.am new file mode 100644 index 000000000..e3dedc0aa --- /dev/null +++ b/js/perf/Makefile.am @@ -0,0 +1,4 @@ +jsperfdir = $(pkgdatadir)/js/perf + +dist_jsperf_DATA = \ + core.js diff --git a/js/ui/Makefile.am b/js/ui/Makefile.am index 57fb7f443..b701fc677 100644 --- a/js/ui/Makefile.am +++ b/js/ui/Makefile.am @@ -25,6 +25,7 @@ dist_jsui_DATA = \ panel.js \ placeDisplay.js \ runDialog.js \ + scripting.js \ search.js \ shellDBus.js \ statusMenu.js \