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 | 3f901c08b86ae167ea7d350d6554f190a63a3f58 (patch) | |
tree | 21eecf5a3a54adbee891ecd0e5468a79aea3ddb3 /mk/plist | |
parent | 683c422a942f0be09820151498014f15559045e8 (diff) | |
download | pkgsrc-3f901c08b86ae167ea7d350d6554f190a63a3f58.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 |