Fixed typo.

This commit is contained in:
Vincent Richard 2010-05-04 10:07:56 +00:00
parent 1e57aa31c5
commit 371eda4134

View File

@ -1071,7 +1071,7 @@ def generateAutotools(target, source, env):
# Generate pkg-config file for shared and static library # Generate pkg-config file for shared and static library
vmime_pc_in = open(packageVersionedGenericName + ".pc.in", 'w') vmime_pc_in = open(packageVersionedGenericName + ".pc.in", 'w')
vmime_pc_in.write("# File automatically generated by SConstruct ('scons autotools')\n") vmime_pc_in.write("# File automatically generated by SConstruct ('scons autotools')\n")
vmime_pc_in.write("# DOT NOT EDIT!\n") vmime_pc_in.write("# DO NOT EDIT!\n")
vmime_pc_in.write("\n") vmime_pc_in.write("\n")
vmime_pc_in.write("prefix=@prefix@\n") vmime_pc_in.write("prefix=@prefix@\n")
vmime_pc_in.write("exec_prefix=@exec_prefix@\n") vmime_pc_in.write("exec_prefix=@exec_prefix@\n")
@ -1091,7 +1091,7 @@ def generateAutotools(target, source, env):
Makefile_am = open("Makefile.am", 'w') Makefile_am = open("Makefile.am", 'w')
Makefile_am.write(""" Makefile_am.write("""
# File automatically generated by SConstruct ('scons autotools') # File automatically generated by SConstruct ('scons autotools')
# DOT NOT EDIT! # DO NOT EDIT!
BINDING = BINDING =
INCLUDE = vmime INCLUDE = vmime
@ -1123,7 +1123,7 @@ docdir = $(datadir)/doc/$(GENERIC_LIBRARY_NAME)
Makefile_am = open("vmime/Makefile.am", 'w') Makefile_am = open("vmime/Makefile.am", 'w')
Makefile_am.write(""" Makefile_am.write("""
# File automatically generated by SConstruct ('scons autotools') # File automatically generated by SConstruct ('scons autotools')
# DOT NOT EDIT! # DO NOT EDIT!
""") """)
#Makefile_am.write(packageVersionedName + "includedir = $(prefix)/include/@GENERIC_VERSIONED_LIBRARY_NAME@/@GENERIC_LIBRARY_NAME@\n") #Makefile_am.write(packageVersionedName + "includedir = $(prefix)/include/@GENERIC_VERSIONED_LIBRARY_NAME@/@GENERIC_LIBRARY_NAME@\n")
@ -1145,7 +1145,7 @@ docdir = $(datadir)/doc/$(GENERIC_LIBRARY_NAME)
Makefile_am = open("src/Makefile.am", 'w') Makefile_am = open("src/Makefile.am", 'w')
Makefile_am.write(""" Makefile_am.write("""
# File automatically generated by SConstruct ('scons autotools') # File automatically generated by SConstruct ('scons autotools')
# DOT NOT EDIT! # DO NOT EDIT!
AUTOMAKE_OPTIONS = no-dependencies foreign AUTOMAKE_OPTIONS = no-dependencies foreign
INTERNALS = INTERNALS =
@ -1235,7 +1235,7 @@ noinst_HEADERS = $(INTERNALS)
# configure.in # configure.in
# File automatically generated by SConstruct ('scons autotools') # File automatically generated by SConstruct ('scons autotools')
# DOT NOT EDIT! # DO NOT EDIT!
# Init # Init
""") """)