diff options
author | special <special@e03df62e-2008-0410-955e-edbf42e46eb7> | 2006-09-24 08:39:49 +0000 |
---|---|---|
committer | special <special@e03df62e-2008-0410-955e-edbf42e46eb7> | 2006-09-24 08:39:49 +0000 |
commit | e304c0b37b93dbf1e3f5317a65e80a42648f3199 (patch) | |
tree | f9f57f8860f4907938b8746415c0b4bfb02c6646 /configure | |
parent | fc31e0a8c3af0b0e9f6ba9f1ee9fecf4413ede5f (diff) |
Fixed the reversal of update and modupdate in ./configure
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@5312 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -47,8 +47,8 @@ GetOptions ( 'binary-dir=s' => \$opt_binary_dir, 'library-dir=s' => \$opt_library_dir, 'help' => sub { showhelp(); }, - 'modupdate' => sub { update(); }, - 'update' => sub { modupdate(); }, + 'modupdate' => sub { modupdate(); }, + 'update' => sub { update(); }, 'svnupdate' => sub { svnupdate(); }, 'clean' => sub { clean(); }, ); |