From 109634ba7788e8ea247b860f60af3df97c9e01f1 Mon Sep 17 00:00:00 2001 From: Jelmer Vernooij Date: Sun, 18 May 2008 18:33:05 +0200 Subject: [PATCH] Fix --output argument. (This used to be commit a38e473c9e382465ae30f3ca7ae12de500aec5f7) --- source4/build/smb_build/main.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source4/build/smb_build/main.pl b/source4/build/smb_build/main.pl index d6476c0cf23..ab889b0e5a8 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); -- 2.34.1