29 lines
852 B
Diff
29 lines
852 B
Diff
From a29218ba1ee9664ce250b7b1b749cb9dc8cc4811 Mon Sep 17 00:00:00 2001
|
|
From: Colin Walters <walters@verbum.org>
|
|
Date: Fri, 13 Jan 2012 15:39:24 -0500
|
|
Subject: [PATCH] build: make install install everything
|
|
|
|
The make install-dev target is nice, but it'd be better eventually to
|
|
convert this to Automake after we land patches to do
|
|
buildapi-install-devel.
|
|
---
|
|
Makefile | 2 +-
|
|
1 files changed, 1 insertions(+), 1 deletions(-)
|
|
|
|
diff --git a/Makefile b/Makefile
|
|
index 26fdbc8..1c9f0d6 100644
|
|
--- a/Makefile
|
|
+++ b/Makefile
|
|
@@ -80,7 +80,7 @@ include/config.h: include/builddefs
|
|
$(MAKE) $(AM_MAKEFLAGS) include/builddefs; \
|
|
fi
|
|
|
|
-install: default $(addsuffix -install,$(SUBDIRS))
|
|
+install: default install-dev install-lib $(addsuffix -install,$(SUBDIRS))
|
|
$(INSTALL) -m 755 -d $(PKG_DOC_DIR)
|
|
$(INSTALL) -m 644 README $(PKG_DOC_DIR)
|
|
|
|
--
|
|
1.7.6.4
|
|
|