pkgsrc-WIP-changes archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

ut8proc: Align backslashes before newlines to same column



Module Name:	pkgsrc-wip
Committed By:	Michael Baeuerle <micha%NetBSD.org@localhost>
Pushed By:	micha
Date:		Wed May 27 10:26:58 2020 +0200
Changeset:	a827a3f159e6e7b47233357bb0127cba1cc4c5ff

Modified Files:
	utf8proc/Makefile

Log Message:
ut8proc: Align backslashes before newlines to same column

To see a diff of this commit:
https://wip.pkgsrc.org/cgi-bin/gitweb.cgi?p=pkgsrc-wip.git;a=commitdiff;h=a827a3f159e6e7b47233357bb0127cba1cc4c5ff

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

diffstat:
 utf8proc/Makefile | 26 +++++++++++++-------------
 1 file changed, 13 insertions(+), 13 deletions(-)

diffs:
diff --git a/utf8proc/Makefile b/utf8proc/Makefile
index b9165b10a5..2dbc05cbae 100644
--- a/utf8proc/Makefile
+++ b/utf8proc/Makefile
@@ -22,28 +22,28 @@ MINOR=	3
 PATCH=	2
 
 do-configure:
-	cd ${WRKSRC} && ${SED} \
-		-e 's#PREFIX#${PREFIX}#' \
-		-e 's#LIBDIR#lib#' \
-		-e 's#INCLUDEDIR#include#' \
-		-e 's#VERSION#${MAJOR}.${MINOR}.${PATCH}#' \
-		-e 's#Description:.*$$#Description: ${COMMENT}#' \
+	cd ${WRKSRC} && ${SED}						\
+		-e 's#PREFIX#${PREFIX}#'				\
+		-e 's#LIBDIR#lib#'					\
+		-e 's#INCLUDEDIR#include#'				\
+		-e 's#VERSION#${MAJOR}.${MINOR}.${PATCH}#'		\
+		-e 's#Description:.*$$#Description: ${COMMENT}#'	\
 		libutf8proc.pc.in >libutf8proc.pc
 
 do-build:
-	cd ${WRKSRC} && ${LIBTOOL} --tag=CC --mode=compile \
+	cd ${WRKSRC} && ${LIBTOOL} --tag=CC --mode=compile		\
 		${CC} ${CPPFLAGS} ${CFLAGS} -c -o utf8proc.lo utf8proc.c
-	cd ${WRKSRC} && ${LIBTOOL} --tag=CC --mode=link \
-		${CC} ${LDFLAGS} -o libutf8proc.la utf8proc.lo \
-			-rpath ${PREFIX}/lib \
+	cd ${WRKSRC} && ${LIBTOOL} --tag=CC --mode=link			\
+		${CC} ${LDFLAGS} -o libutf8proc.la utf8proc.lo		\
+			-rpath ${PREFIX}/lib				\
 			-version-number ${MAJOR}:${MINOR}:${PATCH}
 
 do-install:
-	cd ${WRKSRC} && ${LIBTOOL} --mode=install \
+	cd ${WRKSRC} && ${LIBTOOL} --mode=install			\
 		${INSTALL_LIB} libutf8proc.la ${DESTDIR}${PREFIX}/lib
-	cd ${WRKSRC} && \
+	cd ${WRKSRC} &&							\
 		${INSTALL_DATA} utf8proc.h ${DESTDIR}${PREFIX}/include
-	cd ${WRKSRC} && \
+	cd ${WRKSRC} &&							\
 		${INSTALL_DATA} libutf8proc.pc ${DESTDIR}${PREFIX}/lib/pkgconfig
 
 .include "../../mk/bsd.pkg.mk"


Home | Main Index | Thread Index | Old Index