diff options
author | reed <reed@pkgsrc.org> | 2006-01-26 18:19:03 +0000 |
---|---|---|
committer | reed <reed@pkgsrc.org> | 2006-01-26 18:19:03 +0000 |
commit | 1dd2209eb47d5cd519f894790c960f89d07cf938 (patch) | |
tree | a16ddd1741ed27a406ad013033b18328b1a33cda | |
parent | ef8c0ba07b43c4fe45463e87d91c9978ecf22a99 (diff) | |
download | pkgsrc-1dd2209eb47d5cd519f894790c960f89d07cf938.tar.gz |
Fix typo: INFODIR should be INFO_DIR for INSTALLATION_DIRS.
I made this typo in September.
Noticed from Jonathan Perkin's bulk build.
INFODIR is defined in bsd.own.mk and I didn't even know about
bsd.info.mk. (Is that used? If so, maybe INFODIR=${PREFIX}/${INFO_DIR}.)
-rw-r--r-- | archivers/gtar-info/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/archivers/gtar-info/Makefile b/archivers/gtar-info/Makefile index 1fc1022d88c..94a9a8b3d5f 100644 --- a/archivers/gtar-info/Makefile +++ b/archivers/gtar-info/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.20 2005/09/22 16:48:34 reed Exp $ +# $NetBSD: Makefile,v 1.21 2006/01/26 18:19:03 reed Exp $ # DISTNAME= tar-1.15.1 @@ -19,7 +19,7 @@ PKG_INSTALLATION_TYPES= overwrite pkgviews NO_CONFIGURE= yes NO_BUILD= yes -INSTALLATION_DIRS= ${INFODIR} +INSTALLATION_DIRS= ${INFO_DIR} do-install: ${INSTALL_DATA} ${WRKSRC}/doc/tar.info ${PREFIX}/${INFO_DIR} |