The following changes since commit 2dc7637600dd1b8936ab173e20110af03d381407: gitignore: ignore configure script outputs (2013-04-04 09:05:56 +0200) are available in the git repository at: git://git.kernel.dk/fio.git master Jens Axboe (1): Makefile: use ginstall on Solaris Makefile | 6 +++++- 1 files changed, 5 insertions(+), 1 deletions(-) --- Diff of recent changes: diff --git a/Makefile b/Makefile index 27e82c6..cffc23a 100644 --- a/Makefile +++ b/Makefile @@ -164,7 +164,11 @@ ifndef V endif endif -INSTALL = install +ifeq ($(CONFIG_TARGET_OS), SunOS) + INSTALL = ginstall +else + INSTALL = install +endif prefix = /usr/local bindir = $(prefix)/bin -- To unsubscribe from this list: send the line "unsubscribe fio" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html