summaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorrcrit <rcrit@tove.greyoak.com>2010-03-15 11:40:58 -0400
committerJason Gerard DeRose <jderose@redhat.com>2010-03-19 07:57:55 -0600
commit3998078461f9e8484e91449f895e6a444b6f6245 (patch)
treec78f33d00f9ddc4e9280b638fd4bbd85ac1021e2 /Makefile
parentd13fcb6a0c6702e000705d9366b4d1e519fa632f (diff)
downloadfreeipa-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--Makefile2
1 files changed, 2 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index b881a087..73ab7685 100644
--- a/Makefile
+++ b/Makefile
@@ -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 \