diff options
author | Martin Pool <mbp@samba.org> | 2001-12-10 06:23:28 +0000 |
---|---|---|
committer | Martin Pool <mbp@samba.org> | 2001-12-10 06:23:28 +0000 |
commit | 43069e54754dbb0928776e9cb1dcccb8954df8f0 (patch) | |
tree | f5310a55432c07624c5aebe3b982ef355359da13 | |
parent | 6b36fa3a8ad3a71850493f62ab4edebc3a57c9fc (diff) | |
download | samba-43069e54754dbb0928776e9cb1dcccb8954df8f0.tar.gz samba-43069e54754dbb0928776e9cb1dcccb8954df8f0.tar.bz2 samba-43069e54754dbb0928776e9cb1dcccb8954df8f0.zip |
Also show LDFLAGS/LDSHFLAGS when starting compilation, because they're
not visible later on.
(This used to be commit 8edd29e09959a14a2b87c65930df7df2c2d88b03)
-rw-r--r-- | source3/Makefile.in | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/source3/Makefile.in b/source3/Makefile.in index 561a5ec0f6..cce0aecad7 100644 --- a/source3/Makefile.in +++ b/source3/Makefile.in @@ -483,8 +483,10 @@ nsswitch : SHOWFLAGS $(WINBIND_PROGS) $(WINBIND_SPROGS) $(LPROGS) SHOWFLAGS: @echo "Using FLAGS = $(FLAGS)" - @echo "Using FLAGS32 = $(FLAGS32)" - @echo "Using LIBS = $(LIBS)" + @echo " FLAGS32 = $(FLAGS32)" + @echo " LIBS = $(LIBS)" + @echo " LDSHFLAGS = $(LDSHFLAGS)" + @echo " LDFLAGS = $(LDFLAGS)" MAKEDIR = || exec false; \ if test -d "$$dir"; then :; else \ |