From 3db93880fdd27bd490597cdc30057f7656855dc2 Mon Sep 17 00:00:00 2001 From: Vincent Richard Date: Sun, 26 Dec 2004 13:41:32 +0000 Subject: [PATCH] Oops, forgot a close() when writing to .pc file. --- SConstruct | 2 ++ 1 file changed, 2 insertions(+) diff --git a/SConstruct b/SConstruct index 29007a23..ec5dd760 100644 --- a/SConstruct +++ b/SConstruct @@ -786,6 +786,8 @@ vmime_pc.write("Requires:\n") vmime_pc.write("Libs: -L${libdir} -l" + versionedPackageName + "-posix -l" + versionedPackageName + "\n") vmime_pc.write("Cflags: -I${includedir}/" + versionedPackageName + "\n") +vmime_pc.close() + env.Install(libDir + "/pkgconfig", versionedPackageName + ".pc") # Provide "install" target (ie. 'scons install')