diff options
| author | Petr Spacek <pspacek@redhat.com> | 2016-10-31 12:33:43 +0100 |
|---|---|---|
| committer | Martin Babinsky <mbabinsk@redhat.com> | 2016-11-09 13:08:32 +0100 |
| commit | 24feae47f26f40f757fbdd711399128d88c9b62c (patch) | |
| tree | 47bb9e1336f0b7cb6b4f15b18e80868192fd57b7 /install/ui | |
| parent | 820fd4c7ce6ccc80272f45d6f64227567692dd39 (diff) | |
| download | freeipa-24feae47f26f40f757fbdd711399128d88c9b62c.tar.gz freeipa-24feae47f26f40f757fbdd711399128d88c9b62c.tar.xz freeipa-24feae47f26f40f757fbdd711399128d88c9b62c.zip | |
Build: fix Makefile.am files to separate source and build directories
This is step forward working VPATH builds which cleanly separate sources
and build artifacts. It makes the system cleaner and easier to
understand.
Python and web UI likely require more work to make VPATH builds working.
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')
| -rw-r--r-- | install/ui/build/freeipa/Makefile.am | 2 | ||||
| -rw-r--r-- | install/ui/css/Makefile.am | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/install/ui/build/freeipa/Makefile.am b/install/ui/build/freeipa/Makefile.am index 0543872e6..932023ac5 100644 --- a/install/ui/build/freeipa/Makefile.am +++ b/install/ui/build/freeipa/Makefile.am @@ -20,6 +20,6 @@ widgets := $(wildcard ../../src/freeipa/widgets/*.js) nav := $(wildcard ../../src/freeipa/navigation/*.js) app.js: $(core) $(base) $(widgets) $(nav) - ../../util/make-ui.sh + $(srcdir)/../../util/make-ui.sh core.js: app.js diff --git a/install/ui/css/Makefile.am b/install/ui/css/Makefile.am index 9e66c7d58..64cb3fc89 100644 --- a/install/ui/css/Makefile.am +++ b/install/ui/css/Makefile.am @@ -18,4 +18,4 @@ MAINTAINERCLEANFILES = \ ipa := $(wildcard ../less/*.less) ipa.css: $(ipa) - ../util/make-css.sh
\ No newline at end of file + $(srcdir)/../util/make-css.sh |
