diff options
author | Russ Allbery <eagle@eyrie.org> | 2014-07-15 20:23:50 -0700 |
---|---|---|
committer | Russ Allbery <rra@stanford.edu> | 2014-07-15 21:10:27 -0700 |
commit | 0b97ce27ea443be1e4b63fb5ebffa8a274a00f40 (patch) | |
tree | f8a946cda3fe3523b961e42928c1031f9dddfdc3 /perl | |
parent | 6d7b65a912e6ea7e36d3ea5121bea2f427de453f (diff) |
Adjust create-ddl for the move of modules to lib
Now needs a use lib 'lib' in order to run out of the source
directory.
Change-Id: Ia8645eae6c6699db919968d42f057b06e42150a2
Reviewed-on: https://gerrit.stanford.edu/1552
Reviewed-by: Russ Allbery <rra@stanford.edu>
Tested-by: Russ Allbery <rra@stanford.edu>
Diffstat (limited to 'perl')
-rwxr-xr-x | perl/create-ddl | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/perl/create-ddl b/perl/create-ddl index 09225fa..b2b6f95 100755 --- a/perl/create-ddl +++ b/perl/create-ddl @@ -1,9 +1,9 @@ #!/usr/bin/perl -w # -# create-ddl - Create DDL files for Wallet +# Create DDL files for the wallet. # # Written by Jon Robertson <jonrober@stanford.edu> -# Copyright 2012 +# Copyright 2012, 2014 # The Board of Trustees of the Leland Stanford Junior University # # See LICENSE for licensing terms. @@ -15,6 +15,8 @@ use strict; use vars qw(); +use lib 'lib'; + use Getopt::Long; use Wallet::Admin; |