diff options
author | rillig <rillig@pkgsrc.org> | 2019-11-03 10:39:04 +0000 |
---|---|---|
committer | rillig <rillig@pkgsrc.org> | 2019-11-03 10:39:04 +0000 |
commit | 9959c7f72f02bc48af637ad0304db4eebf7cc3cd (patch) | |
tree | ea0565acc58fb990fc3eb929809360b2ab62f357 /devel/doxygen | |
parent | 087f64293d4b805ab86f0cd7079ddf7651f52ca0 (diff) | |
download | pkgsrc-9959c7f72f02bc48af637ad0304db4eebf7cc3cd.tar.gz |
devel: align variable assignments
pkglint -Wall -F --only aligned --only indent -r
No manual corrections.
Diffstat (limited to 'devel/doxygen')
-rw-r--r-- | devel/doxygen/Makefile | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/devel/doxygen/Makefile b/devel/doxygen/Makefile index 0c332d315d2..28dad5b1616 100644 --- a/devel/doxygen/Makefile +++ b/devel/doxygen/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.140 2019/10/17 20:35:58 adam Exp $ +# $NetBSD: Makefile,v 1.141 2019/11/03 10:39:10 rillig Exp $ DISTNAME= doxygen-1.8.16.src PKGNAME= ${DISTNAME:S/.src//} @@ -38,13 +38,13 @@ SUBST_SED.epstopdf= -e 's,"epstopdf","${PREFIX}/bin/epstopdf",g' # Fixing $PWD / $(PWD) / $(HOME) for documentation # The dollar sign should be inserted literally in the documentation # doxygen always inserted the path => Completely remove dollar sign -SUBST_CLASSES+= changelog -SUBST_STAGE.changelog= pre-configure -SUBST_MESSAGE.changelog=Fixing dollar sign for documentation -SUBST_FILES.changelog= doc/changelog.doc -SUBST_SED.changelog= -e 's,$$PWD,PWD,g' -SUBST_SED.changelog+= -e 's,$$(PWD,(PWD,g' -SUBST_SED.changelog+= -e 's,$$(HOME,(HOME,g' +SUBST_CLASSES+= changelog +SUBST_STAGE.changelog= pre-configure +SUBST_MESSAGE.changelog= Fixing dollar sign for documentation +SUBST_FILES.changelog= doc/changelog.doc +SUBST_SED.changelog= -e 's,$$PWD,PWD,g' +SUBST_SED.changelog+= -e 's,$$(PWD,(PWD,g' +SUBST_SED.changelog+= -e 's,$$(HOME,(HOME,g' .include "../../mk/bsd.prefs.mk" |