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
This commit is contained in:
special 2006-09-24 08:39:49 +00:00
parent fc31e0a8c3
commit e304c0b37b

4
configure vendored
View File

@ -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(); },
);