From 42c0b61ca58ddc64ede08c0c02ebe3f9eb5b9570 Mon Sep 17 00:00:00 2001 From: Theodore Ts'o Date: Tue, 1 Jan 2008 16:48:09 -0500 Subject: [PATCH] Fix profile, checker, and shared-library building on non-Linux platforms Approximately two years ago a revamp of the e2fsprogs build infrastructure broke the Makefile fragments for building BSD, Solaris, and Darwin shared libraries, as well as profiling and checker libraries. Apparently no one had noticed except for pierre42@users.sourceforge.net. Addresses-Sourceforge-Bug: #1819034 Signed-off-by: "Theodore Ts'o" --- lib/Makefile.bsd-lib | 4 ++-- lib/Makefile.checker | 2 +- lib/Makefile.darwin-lib | 2 +- lib/Makefile.profile | 4 ++-- lib/Makefile.solaris-lib | 2 +- 5 files changed, 7 insertions(+), 7 deletions(-) diff --git a/lib/Makefile.bsd-lib b/lib/Makefile.bsd-lib index 4ab776a..ec7cae4 100644 --- a/lib/Makefile.bsd-lib +++ b/lib/Makefile.bsd-lib @@ -10,9 +10,9 @@ # BSDLIB_INSTALL_DIR = $(SHLIBDIR) # -all:: pic image +all:: image -real-subdirs:: pic +real-subdirs:: Makefile @echo " MKDIR pic" @mkdir -p pic diff --git a/lib/Makefile.checker b/lib/Makefile.checker index 95974fa..8382a51 100644 --- a/lib/Makefile.checker +++ b/lib/Makefile.checker @@ -1,4 +1,4 @@ -all:: checker $(LIBRARY)_chk.a +all:: $(LIBRARY)_chk.a real-subdirs:: Makefile @echo " MKDIR checker" diff --git a/lib/Makefile.darwin-lib b/lib/Makefile.darwin-lib index c9e44cc..3052b2e 100644 --- a/lib/Makefile.darwin-lib +++ b/lib/Makefile.darwin-lib @@ -10,7 +10,7 @@ # BSDLIB_INSTALL_DIR = $(SHLIBDIR) # -all:: pic image +all:: image real-subdirs:: Makefile @echo " MKDIR pic" diff --git a/lib/Makefile.profile b/lib/Makefile.profile index deaa7cb..a2e77c6 100644 --- a/lib/Makefile.profile +++ b/lib/Makefile.profile @@ -1,7 +1,7 @@ -all:: profiled $(LIBRARY)_p.a +all:: $(LIBRARY)_p.a real-subdirs:: Makefile - @echo " MKDIR $@" + @echo " MKDIR profiled" @mkdir -p profiled clean:: diff --git a/lib/Makefile.solaris-lib b/lib/Makefile.solaris-lib index 0874592..fcadfa3 100644 --- a/lib/Makefile.solaris-lib +++ b/lib/Makefile.solaris-lib @@ -11,7 +11,7 @@ # ELF_INSTALL_DIR = $(SHLIBDIR) # ELF_OTHER_LIBS = -lc -all:: elfshared image +all:: image real-subdirs:: Makefile @echo " MKDIR elfshared" -- 1.8.3.1