summaryrefslogtreecommitdiffstats
path: root/install/ui/src
diff options
context:
space:
mode:
authorPetr Spacek <pspacek@redhat.com>2016-11-01 17:07:22 +0100
committerMartin Babinsky <mbabinsk@redhat.com>2016-11-09 13:08:32 +0100
commit441acf7797b2069e8d9a123aa11bb33fd42d9187 (patch)
treedbc07d69dd4707a7af1b632bef9a5328937bf45f /install/ui/src
parentf95098b2b645a62497dc6e1d66be2b7397567d25 (diff)
downloadfreeipa-441acf7797b2069e8d9a123aa11bb33fd42d9187.tar.gz
freeipa-441acf7797b2069e8d9a123aa11bb33fd42d9187.tar.xz
freeipa-441acf7797b2069e8d9a123aa11bb33fd42d9187.zip
Build: fix distribution of static files for web UI
Static files from Git which are not touched by the build system have to be explicitly listed in Makefile.am so they get into tarball. EXTRA_DIST lists whole sub-directories with static files. This is not ideal but we do not have enough time to fix it properly. Dojo builder patch files were renames to shorten their name. The original names were exceeding autotools length limit. https://fedorahosted.org/freeipa/ticket/6418 Reviewed-By: Martin Basti <mbasti@redhat.com> Reviewed-By: Christian Heimes <cheimes@redhat.com>
Diffstat (limited to 'install/ui/src')
-rw-r--r--install/ui/src/Makefile.am5
-rw-r--r--install/ui/src/libs/Makefile.am4
2 files changed, 7 insertions, 2 deletions
diff --git a/install/ui/src/Makefile.am b/install/ui/src/Makefile.am
index c81f888d2..4c70ba113 100644
--- a/install/ui/src/Makefile.am
+++ b/install/ui/src/Makefile.am
@@ -7,7 +7,10 @@ SUBDIRS = \
$(NULL)
EXTRA_DIST = \
- $(NULL)
+ build.profile.js \
+ dojo.profile.js \
+ freeipa \
+ webui.profile.js
MAINTAINERCLEANFILES = \
*~ \
diff --git a/install/ui/src/libs/Makefile.am b/install/ui/src/libs/Makefile.am
index f3e230c38..1962c41eb 100644
--- a/install/ui/src/libs/Makefile.am
+++ b/install/ui/src/libs/Makefile.am
@@ -9,11 +9,13 @@ app_DATA = \
jquery.js \
jquery.ordered-map.js \
json2.js \
- loader.js \
patternfly.js \
qrcode.js \
$(NULL)
+nodist_app_DATA = \
+ loader.js
+
EXTRA_DIST = \
$(app_DATA) \
$(NULL)