1
0
mirror of https://github.com/samba-team/samba.git synced 2024-12-24 21:34:56 +03:00

r12972: Use single quotes in the showflags and showlayout targets to stop the

shell interpreting the expanded make variables.
This commit is contained in:
James Peach 2006-01-17 01:18:27 +00:00 committed by Gerald (Jerry) Carter
parent e9ec3a379c
commit ae7541a377

View File

@ -42,28 +42,28 @@ manpages: $(MANPAGES)
everything: all everything: all
showlayout: showlayout:
@echo "Samba will be installed into:" @echo 'Samba will be installed into:'
@echo " basedir: $(BASEDIR)" @echo ' basedir: $(BASEDIR)'
@echo " bindir: $(BINDIR)" @echo ' bindir: $(BINDIR)'
@echo " sbindir: $(SBINDIR)" @echo ' sbindir: $(SBINDIR)'
@echo " libdir: $(LIBDIR)" @echo ' libdir: $(LIBDIR)'
@echo " modulesdir: $(MODULESDIR)" @echo ' modulesdir: $(MODULESDIR)'
@echo " includedir: $(INCLUDEDIR)" @echo ' includedir: $(INCLUDEDIR)'
@echo " vardir: $(VARDIR)" @echo ' vardir: $(VARDIR)'
@echo " privatedir: $(PRIVATEDIR)" @echo ' privatedir: $(PRIVATEDIR)'
@echo " piddir: $(PIDDIR)" @echo ' piddir: $(PIDDIR)'
@echo " lockdir: $(LOCKDIR)" @echo ' lockdir: $(LOCKDIR)'
@echo " logfilebase: $(LOGFILEBASE)" @echo ' logfilebase: $(LOGFILEBASE)'
@echo " swatdir: $(SWATDIR)" @echo ' swatdir: $(SWATDIR)'
@echo " mandir: $(MANDIR)" @echo ' mandir: $(MANDIR)'
showflags: showflags:
@echo "Samba will be compiled with flags:" @echo 'Samba will be compiled with flags:'
@echo " CFLAGS = $(CFLAGS)" @echo ' CFLAGS = $(CFLAGS)'
@echo " LDFLAGS = $(LDFLAGS)" @echo ' LDFLAGS = $(LDFLAGS)'
@echo " STLD_FLAGS = $(STLD_FLAGS)" @echo ' STLD_FLAGS = $(STLD_FLAGS)'
@echo " SHLD_FLAGS = $(SHLD_FLAGS)" @echo ' SHLD_FLAGS = $(SHLD_FLAGS)'
@echo " LIBS = $(LIBS)" @echo ' LIBS = $(LIBS)'
# The permissions to give the executables # The permissions to give the executables
INSTALLPERMS = 0755 INSTALLPERMS = 0755