Fix string literal typo (from upstream)

This commit is contained in:
dcoppa 2012-11-15 12:29:07 +00:00
parent 060ecd19ac
commit ca0eb5212e
2 changed files with 18 additions and 1 deletions

View File

@ -1,4 +1,4 @@
# $OpenBSD: Makefile,v 1.67 2012/11/15 08:43:25 dcoppa Exp $
# $OpenBSD: Makefile,v 1.68 2012/11/15 12:29:07 dcoppa Exp $
VMEM_WARNING = Yes
BROKEN-arm = build fails since move to gcc4
@ -7,6 +7,7 @@ HOMEPAGE = http://www.cmake.org/
CATEGORIES = devel
COMMENT = portable build system
DISTNAME = cmake-2.8.10.1
REVISION = 0
MASTER_SITES = ${HOMEPAGE}files/v2.8/
MAINTAINER = David Coppa <dcoppa@openbsd.org>

View File

@ -0,0 +1,16 @@
$OpenBSD: patch-Source_CPack_cmCPackGenerator_cxx,v 1.1 2012/11/15 12:29:08 dcoppa Exp $
Fix typo
(upstream git commit 572d9e1e057e64ae9eccda5db8b08c3164a34bc4)
--- Source/CPack/cmCPackGenerator.cxx.orig Thu Nov 15 13:02:31 2012
+++ Source/CPack/cmCPackGenerator.cxx Thu Nov 15 13:03:11 2012
@@ -208,7 +208,7 @@ int cmCPackGenerator::InstallProject()
{
cmCPackLogger(cmCPackLog::LOG_ERROR,
"Problem creating temporary directory: "
- << (tempInstallDirectory ? tempInstallDirectory : "(NULL}")
+ << (tempInstallDirectory ? tempInstallDirectory : "(NULL)")
<< std::endl);
return 0;
}