diff options
| author | Petr Spacek <pspacek@redhat.com> | 2016-11-11 15:43:14 +0100 |
|---|---|---|
| committer | Martin Basti <mbasti@redhat.com> | 2016-11-16 09:12:07 +0100 |
| commit | 6b9977f04199bf161d7171aedae9f97648c415c8 (patch) | |
| tree | 284fe0c5eefffceb08571e1051c6623df2bac738 /install/ui | |
| parent | e2060e8e5562ed6a4fe760eba1babb5c1761576a (diff) | |
| download | freeipa-6b9977f04199bf161d7171aedae9f97648c415c8.tar.gz freeipa-6b9977f04199bf161d7171aedae9f97648c415c8.tar.xz freeipa-6b9977f04199bf161d7171aedae9f97648c415c8.zip | |
Build: fix file dependencies for make-css.sh
Some of .less files included by ipa.less were not listed in the
Makefile.am so some changes might not trigger rebuild.
https://fedorahosted.org/freeipa/ticket/6418
Reviewed-By: Lukas Slebodnik <lslebodn@redhat.com>
Reviewed-By: Christian Heimes <cheimes@redhat.com>
Diffstat (limited to 'install/ui')
| -rw-r--r-- | install/ui/css/Makefile.am | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/install/ui/css/Makefile.am b/install/ui/css/Makefile.am index 3cc6968ef..33dc51e8d 100644 --- a/install/ui/css/Makefile.am +++ b/install/ui/css/Makefile.am @@ -15,7 +15,11 @@ EXTRA_DIST = \ $(app_DATA) \ $(NULL) -ipa := $(wildcard ../less/*.less) +ipa := $(wildcard ../less/*.less) \ + ../less/font-awesome/variables.less \ + ../less/patternfly/variables.less \ + ../less/bootstrap/variables.less \ + ../less/variables.less ipa.css: $(ipa) $(srcdir)/../util/make-css.sh |
