diff options
author | jlam <jlam@pkgsrc.org> | 2006-01-21 14:44:34 +0000 |
---|---|---|
committer | jlam <jlam@pkgsrc.org> | 2006-01-21 14:44:34 +0000 |
commit | 91a276733eebc876abc3009a2de63d8560591cc0 (patch) | |
tree | 21eecf5a3a54adbee891ecd0e5468a79aea3ddb3 /mk/plist | |
parent | a43daa0f304928c2dea6f6f3e699255af85d95de (diff) | |
download | pkgsrc-91a276733eebc876abc3009a2de63d8560591cc0.tar.gz |
Fix a weird newline error (probably cut-and-paste error).
Diffstat (limited to 'mk/plist')
-rw-r--r-- | mk/plist/plist.mk | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/mk/plist/plist.mk b/mk/plist/plist.mk index 5c4fba4467a..77210591bb0 100644 --- a/mk/plist/plist.mk +++ b/mk/plist/plist.mk @@ -1,4 +1,4 @@ -# $NetBSD: plist.mk,v 1.3 2006/01/13 23:09:39 jlam Exp $ +# $NetBSD: plist.mk,v 1.4 2006/01/21 14:44:34 jlam Exp $ # # This Makefile fragment handles the creation of PLISTs for use by # pkg_create(8). @@ -49,8 +49,7 @@ PLIST_SRC+= ${PKGDIR}/PLIST.${OPSYS} PLIST_SRC+= ${PKGDIR}/PLIST.${MACHINE_ARCH:C/i[3-6]86/i386/g} . endif . if exists(${PKGDIR}/PLIST.${OPSYS}-${MACHINE_ARCH:C/i[3-6]86/i386/g}) -PLIST_SRC+= ${PKGDIR}/PLIST.${OPSYS}-${MACHINE_ARCH:C/i[3-6]86/i386/ -g} +PLIST_SRC+= ${PKGDIR}/PLIST.${OPSYS}-${MACHINE_ARCH:C/i[3-6]86/i386/g} . endif . if exists(${PKGDIR}/PLIST) PLIST_SRC+= ${PKGDIR}/PLIST |