diff options
author | wiz <wiz@pkgsrc.org> | 2012-03-08 23:12:16 +0000 |
---|---|---|
committer | wiz <wiz@pkgsrc.org> | 2012-03-08 23:12:16 +0000 |
commit | 6ee1832d3f85e3f404a6cbcc2ed245bb01187e82 (patch) | |
tree | 2d0115ea19f951a5be498bf684fe3da2806ff0cd | |
parent | 6222c08096781012a068652a3c6968ecf77d0e4e (diff) | |
download | pkgsrc-6ee1832d3f85e3f404a6cbcc2ed245bb01187e82.tar.gz |
Remove special handling for LOWER_VENDOR in print-PLIST, it hurts more
than it helps (e.g. replacing foo.pc with foo.${LOWER_VENDOR}).
-rw-r--r-- | mk/plist/print-plist.mk | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/mk/plist/print-plist.mk b/mk/plist/print-plist.mk index 09f76199019..2caee62d6f8 100644 --- a/mk/plist/print-plist.mk +++ b/mk/plist/print-plist.mk @@ -1,4 +1,4 @@ -# $NetBSD: print-plist.mk,v 1.19 2011/08/30 11:19:51 obache Exp $ +# $NetBSD: print-plist.mk,v 1.20 2012/03/08 23:12:16 wiz Exp $ ### ### Automatic PLIST generation @@ -20,10 +20,6 @@ _PRINT_PLIST_AWK_SUBST+= \ gsub(/${MACHINE_GNU_PLATFORM}/, "$${MACHINE_GNU_PLATFORM}"); \ gsub(/${MACHINE_ARCH}/, "$${MACHINE_ARCH}"); \ gsub(/${MACHINE_GNU_ARCH}/, "$${MACHINE_GNU_ARCH}"); -. if !empty(LOWER_VENDOR) -_PRINT_PLIST_AWK_SUBST+= \ - gsub(/${LOWER_VENDOR}/, "$${LOWER_VENDOR}"); -. endif _PRINT_PLIST_AWK_SUBST+= \ gsub(/${LOWER_OS_VERSION:S/./\./g}/, "$${LOWER_OS_VERSION}"); \ gsub(/${LOWER_OPSYS}/, "$${LOWER_OPSYS}"); |