svn commit: r278740 - stable/10/usr.bin/svn/svn
Glen Barber
gjb at FreeBSD.org
Sat Feb 14 01:33:12 UTC 2015
Author: gjb
Date: Sat Feb 14 01:33:11 2015
New Revision: 278740
URL: https://svnweb.freebsd.org/changeset/base/278740
Log:
MFC r278603, r278607:
r278603:
Ensure ORGANIZATION_NAME is quoted when ORGANIZATION
could contain strings of two or more words.
r278607:
Reduce number of lines to set ORGANIZATION_NAME in
freebsd-organization.h.
PR: 197540
Sponsored by: The FreeBSD Foundation
Modified:
stable/10/usr.bin/svn/svn/Makefile
Directory Properties:
stable/10/ (props changed)
Modified: stable/10/usr.bin/svn/svn/Makefile
==============================================================================
--- stable/10/usr.bin/svn/svn/Makefile Sat Feb 14 00:23:53 2015 (r278739)
+++ stable/10/usr.bin/svn/svn/Makefile Sat Feb 14 01:33:11 2015 (r278740)
@@ -59,7 +59,7 @@ DPSRCS+= freebsd-organization.h
CLEANFILES+= freebsd-organization.h
CFLAGS+= -I. -DHAS_ORGANIZATION_NAME
freebsd-organization.h:
- @echo '#define ORGANIZATION_NAME ${ORGANIZATION}' \
+ @echo "#define ORGANIZATION_NAME \"$$(eval echo ${ORGANIZATION})\"" \
> freebsd-organization.h
.endif
More information about the svn-src-all
mailing list