Module Name:    src
Committed By:   christos
Date:           Sun Aug 24 16:39:21 UTC 2014

Modified Files:
        src/external/mit/xorg/include/xproto: Makefile

Log Message:
Depending on whitespace eating behavior is non portable (our make was
not compliant until today -- it ate all whitespace). Fix commands so
that they don't depend on that.


To generate a diff of this commit:
cvs rdiff -u -r1.2 -r1.3 src/external/mit/xorg/include/xproto/Makefile

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/external/mit/xorg/include/xproto/Makefile
diff -u src/external/mit/xorg/include/xproto/Makefile:1.2 src/external/mit/xorg/include/xproto/Makefile:1.3
--- src/external/mit/xorg/include/xproto/Makefile:1.2	Sat Sep 13 00:32:29 2008
+++ src/external/mit/xorg/include/xproto/Makefile	Sun Aug 24 12:39:21 2014
@@ -1,17 +1,17 @@
-#	$NetBSD: Makefile,v 1.2 2008/09/13 04:32:29 cube Exp $
+#	$NetBSD: Makefile,v 1.3 2014/08/24 16:39:21 christos Exp $
 
 .include <bsd.own.mk>
 
 .PATH:	${X11SRCDIR.xproto}
 
 Xfuncproto.h: Xfuncproto.h.in
-	${TOOL_SED} 's/#undef NARROWPROTO/#define NARROWPROTO/; \
-		     s/#undef FUNCPROTO/#define FUNCPROTO 15/' \
-		     < ${.ALLSRC} > ${.TARGET}
+	${TOOL_SED} -e 's/#undef NARROWPROTO/#define NARROWPROTO/'  \
+	    -e 's/#undef FUNCPROTO/#define FUNCPROTO 15/' \
+	    < ${.ALLSRC} > ${.TARGET}
 
 Xpoll.h: Xpoll.h.in
 	${TOOL_SED} 's/@USE_FDS_BITS@/fds_bits/' \
-		     < ${.ALLSRC} > ${.TARGET}
+	    < ${.ALLSRC} > ${.TARGET}
 
 INCS=	DECkeysym.h HPkeysym.h Sunkeysym.h X.h XF86keysym.h XWDFile.h \
 	Xalloca.h Xarch.h Xatom.h Xdefs.h Xfuncproto.h Xfuncs.h Xmd.h \

Reply via email to