diff options
author | rillig <rillig@pkgsrc.org> | 2020-05-04 18:29:26 +0000 |
---|---|---|
committer | rillig <rillig@pkgsrc.org> | 2020-05-04 18:29:26 +0000 |
commit | a7e98da9af7e5e05669e294820ba6e91261c7b10 (patch) | |
tree | 866bdbac634de5bd4e71563c890c4c99a4d1c0e4 /converters | |
parent | c62cde47e7ea702cbba785e276480206d9a36ec9 (diff) | |
download | pkgsrc-a7e98da9af7e5e05669e294820ba6e91261c7b10.tar.gz |
converters/help2man: remove redundant condition around SUBST block
Since subst.mk r1.85 from 2020-04-29 20:00, a few hours after this
condition had been added, this is not necessary anymore.
Diffstat (limited to 'converters')
-rw-r--r-- | converters/help2man/Makefile | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/converters/help2man/Makefile b/converters/help2man/Makefile index 4f0d4410a81..4c3b2579450 100644 --- a/converters/help2man/Makefile +++ b/converters/help2man/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.56 2020/04/29 12:39:57 adam Exp $ +# $NetBSD: Makefile,v 1.57 2020/05/04 18:29:26 rillig Exp $ DISTNAME= help2man-1.47.15 CATEGORIES= converters @@ -39,7 +39,6 @@ SOEXT= sl SOEXT= so .endif -.if ${SOEXT} != so SUBST_CLASSES+= soext SUBST_MESSAGE.soext= Fixing shared library suffix SUBST_STAGE.soext= pre-configure @@ -47,7 +46,6 @@ SUBST_FILES.soext= bindtextdomain.c SUBST_FILES.soext+= Makefile.in SUBST_SED.soext+= -e 's,bindtextdomain\.so,bindtextdomain.${SOEXT},g' SUBST_SED.soext+= -e 's,$$(preload)\.so,$$(preload).${SOEXT},g' -.endif PLIST_SUBST+= SOEXT=${SOEXT} |