diff options
author | Vincent Richard <[email protected]> | 2004-12-26 13:41:32 +0000 |
---|---|---|
committer | Vincent Richard <[email protected]> | 2004-12-26 13:41:32 +0000 |
commit | 3db93880fdd27bd490597cdc30057f7656855dc2 (patch) | |
tree | df03d14281a48f0740fcff0bda43ee92ced39b5b | |
parent | Added versioning + removed shared library build (does not work because of C++... (diff) | |
download | vmime-3db93880fdd27bd490597cdc30057f7656855dc2.tar.gz vmime-3db93880fdd27bd490597cdc30057f7656855dc2.zip |
Oops, forgot a close() when writing to .pc file.
Diffstat (limited to '')
-rw-r--r-- | SConstruct | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -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') |