| Index: third_party/sqlite/google_generate_amalgamation.sh
|
| diff --git a/third_party/sqlite/google_generate_preprocessed.sh b/third_party/sqlite/google_generate_amalgamation.sh
|
| similarity index 56%
|
| rename from third_party/sqlite/google_generate_preprocessed.sh
|
| rename to third_party/sqlite/google_generate_amalgamation.sh
|
| index d1dcfaddcb666af89073387656b171215bc59a7e..3211580cc1f7c9dc0ae5599f4fcd51a27c13351c 100755
|
| --- a/third_party/sqlite/google_generate_preprocessed.sh
|
| +++ b/third_party/sqlite/google_generate_amalgamation.sh
|
| @@ -1,19 +1,20 @@
|
| #!/bin/bash
|
| #
|
| -# Copyright 2007 Google Inc. All Rights Reserved.
|
| -# Author: shess@google.com (Scott Hess)
|
| +# Copyright 2011 Google Inc. All Rights Reserved.
|
| +# Author: shess@chromium.org (Scott Hess)
|
| +# TODO(shess): This notice needs updating.
|
|
|
| cd src
|
|
|
| mkdir bld
|
| cd bld
|
| ../configure
|
| -FILES="keywordhash.h opcodes.c opcodes.h parse.c parse.h sqlite3.h"
|
| +FILES="sqlite3.h sqlite3.c"
|
| OPTS=""
|
| -# These options should match those in ../../tools/config.mk.
|
| +# These options should match those in sqlite.gyp.
|
| OPTS="$OPTS -DSQLITE_OMIT_LOAD_EXTENSION=1"
|
| make "OPTS=$OPTS" $FILES
|
| -cp -f $FILES ../../preprocessed
|
| +cp -f $FILES ../../amalgamation
|
|
|
| cd ..
|
| rm -rf bld
|
|
|