From 2449b4d827f5402369ff9c41e66ea226710e520b Mon Sep 17 00:00:00 2001 From: Petr Vobornik Date: Thu, 15 Mar 2012 09:47:18 +0100 Subject: Fixed rpm build warning - extension.js listed twice Building the ipa rpms returns this: warning: File listed twice: /usr/share/ipa/ui/extension.js This is because of a glob: %{_usr}/share/ipa/ui/*.js and then more specifically: %config(noreplace) %{_usr}/share/ipa/ui/extension.js https://fedorahosted.org/freeipa/ticket/2253 --- install/ui/ext/Makefile.am | 14 ++++++++++++++ install/ui/ext/extension.js | 0 2 files changed, 14 insertions(+) create mode 100644 install/ui/ext/Makefile.am create mode 100644 install/ui/ext/extension.js (limited to 'install/ui/ext') diff --git a/install/ui/ext/Makefile.am b/install/ui/ext/Makefile.am new file mode 100644 index 00000000..29a6387c --- /dev/null +++ b/install/ui/ext/Makefile.am @@ -0,0 +1,14 @@ +NULL = + +appdir = $(IPA_DATA_DIR)/ui/ext +app_DATA = \ + extension.js \ + $(NULL) + +EXTRA_DIST = \ + $(app_DATA) \ + $(NULL) + +MAINTAINERCLEANFILES = \ + *~ \ + Makefile.in diff --git a/install/ui/ext/extension.js b/install/ui/ext/extension.js new file mode 100644 index 00000000..e69de29b -- cgit