diff options
author | rcrit <rcrit@tove.greyoak.com> | 2010-03-15 11:40:58 -0400 |
---|---|---|
committer | Jason Gerard DeRose <jderose@redhat.com> | 2010-03-19 07:57:55 -0600 |
commit | 3998078461f9e8484e91449f895e6a444b6f6245 (patch) | |
tree | c78f33d00f9ddc4e9280b638fd4bbd85ac1021e2 /Makefile | |
parent | d13fcb6a0c6702e000705d9366b4d1e519fa632f (diff) | |
download | freeipa-3998078461f9e8484e91449f895e6a444b6f6245.tar.gz freeipa-3998078461f9e8484e91449f895e6a444b6f6245.tar.xz freeipa-3998078461f9e8484e91449f895e6a444b6f6245.zip |
Fix the client and client-rpms make targets
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -60,6 +60,7 @@ bootstrap-autogen: version-update client-autogen client-autogen: version-update cd ipa-client; if [ ! -e Makefile ]; then ../autogen.sh --prefix=/usr --sysconfdir=/etc --localstatedir=/var --libdir=$(LIBDIR) --with-openldap; fi + cd install; if [ ! -e Makefile ]; then ../autogen.sh --prefix=/usr --sysconfdir=/etc --localstatedir=/var --libdir=$(LIBDIR); fi install: all server-install @for subdir in $(SUBDIRS); do \ @@ -70,6 +71,7 @@ client-install: client @for subdir in $(CLIENTDIRS); do \ (cd $$subdir && $(MAKE) install) || exit 1; \ done + cd install/po && $(MAKE) install || exit 1; if [ "$(DESTDIR)" = "" ]; then \ python setup-client.py install; \ else \ |