diff options
author | Jelmer Vernooij <jelmer@samba.org> | 2008-05-18 18:33:05 +0200 |
---|---|---|
committer | Jelmer Vernooij <jelmer@samba.org> | 2008-05-18 18:33:05 +0200 |
commit | 109634ba7788e8ea247b860f60af3df97c9e01f1 (patch) | |
tree | 7fadbc9d85971134fe1c7c62f7d671a554e25716 /source4/build | |
parent | 10676780486c6b7fcf5b11240bc8c2726f58fff2 (diff) | |
download | samba-109634ba7788e8ea247b860f60af3df97c9e01f1.tar.gz samba-109634ba7788e8ea247b860f60af3df97c9e01f1.tar.bz2 samba-109634ba7788e8ea247b860f60af3df97c9e01f1.zip |
Fix --output argument.
(This used to be commit a38e473c9e382465ae30f3ca7ae12de500aec5f7)
Diffstat (limited to 'source4/build')
-rw-r--r-- | source4/build/smb_build/main.pl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source4/build/smb_build/main.pl b/source4/build/smb_build/main.pl index d6476c0cf2..ab889b0e5a 100644 --- a/source4/build/smb_build/main.pl +++ b/source4/build/smb_build/main.pl @@ -17,7 +17,7 @@ use strict; my $output_file = "data.mk"; my $result = GetOptions ( - 'output' => \$output_file); + 'output=s' => \$output_file); if (not $result) { exit(1); |