diff options
author | Michael Adam <obnox@samba.org> | 2009-03-31 08:50:16 +0200 |
---|---|---|
committer | Michael Adam <obnox@samba.org> | 2009-03-31 08:51:40 +0200 |
commit | b2e8bc28a5f589b86269907ff384a9e4c1f3aaca (patch) | |
tree | 2e4a26e6866c5cca8581dbd7be0ca74957a95489 | |
parent | 79b7ba9b106791958cc42d68b11d9dea2a77f6f3 (diff) | |
download | samba-b2e8bc28a5f589b86269907ff384a9e4c1f3aaca.tar.gz samba-b2e8bc28a5f589b86269907ff384a9e4c1f3aaca.tar.bz2 samba-b2e8bc28a5f589b86269907ff384a9e4c1f3aaca.zip |
s3:build: line-wrap assignment of FLAGS for readability
Michael
-rw-r--r-- | source3/Makefile.in | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/source3/Makefile.in b/source3/Makefile.in index 18ee7fec1c..a830033f7a 100644 --- a/source3/Makefile.in +++ b/source3/Makefile.in @@ -159,7 +159,16 @@ CODEPAGEDIR = @codepagedir@ # the directory where pid files go PIDDIR = @piddir@ -FLAGS = -I. -I$(srcdir) @FLAGS1@ @SAMBA_CPPFLAGS@ $(CPPFLAGS) $(ISA) -I$(srcdir)/lib -I.. -D_SAMBA_BUILD_=3 -I../source4 +FLAGS = -I. \ + -I$(srcdir) \ + @FLAGS1@ \ + @SAMBA_CPPFLAGS@ \ + $(CPPFLAGS) \ + $(ISA) \ + -I$(srcdir)/lib \ + -I.. \ + -I../source4 \ + -D_SAMBA_BUILD_=3 PATH_FLAGS = -DSMB_PASSWD_FILE=\"$(SMB_PASSWD_FILE)\" \ -DPRIVATE_DIR=\"$(PRIVATE_DIR)\" \ |