diff options
author | Rob Landley <rob@landley.net> | 2008-09-27 22:00:34 +0000 |
---|---|---|
committer | Rob Landley <rob@landley.net> | 2008-09-27 22:00:34 +0000 |
commit | 615aed08180943965201c658435e94134eea6f93 (patch) | |
tree | f895161b7343653dee47d2baa5103bb6c43b40e8 | |
parent | 58e11d24b86e46689ecb26a8f897bb4588341aad (diff) | |
download | uClibc-alpine-615aed08180943965201c658435e94134eea6f93.tar.bz2 uClibc-alpine-615aed08180943965201c658435e94134eea6f93.tar.xz |
Dependencies tweak: make install should depend on all, or
"make -j 3 all install" can't work without two separate invocations of make.
-rw-r--r-- | Makefile.in | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile.in b/Makefile.in index d2590882f..6fcc819fe 100644 --- a/Makefile.in +++ b/Makefile.in @@ -350,7 +350,7 @@ ifneq ($(UCLIBC_SUPPORT_AI_ADDRCONFIG),y) endif # Installs development library links. -install_dev: install_headers +install_dev: install_headers all $(INSTALL) -d $(PREFIX)$(DEVEL_PREFIX)lib -$(INSTALL) -m 644 lib/*.[ao] $(PREFIX)$(DEVEL_PREFIX)lib/ ifeq ($(HAVE_SHARED),y) @@ -402,7 +402,7 @@ ifeq ($(UCLIBC_FORMAT_SHARED_FLAT),y) endif # Installs run-time libraries -install_runtime: +install_runtime: all ifeq ($(HAVE_SHARED),y) $(INSTALL) -d $(PREFIX)$(RUNTIME_PREFIX)lib $(INSTALL) -m 644 lib/lib*-$(VERSION).so \ |