diff options
author | Stefan Metzmacher <metze@samba.org> | 2007-10-24 09:15:26 +0200 |
---|---|---|
committer | Stefan Metzmacher <metze@samba.org> | 2007-12-21 05:43:24 +0100 |
commit | 135852240e87743c37a660893834e62a5e54a319 (patch) | |
tree | 86ac3f151cf3cbccfbf71d25e093f4cd24fd6c55 /source4/build/smb_build/cflags.pm | |
parent | 1b8da06a0053086376d5145b2febac176413e0c2 (diff) | |
download | samba-135852240e87743c37a660893834e62a5e54a319.tar.gz samba-135852240e87743c37a660893834e62a5e54a319.tar.bz2 samba-135852240e87743c37a660893834e62a5e54a319.zip |
r25712: try to fix the build, perl should handle by_path as comparison function
metze
(This used to be commit ee47f5dc7947cad7eed84f071112e41c4a687275)
Diffstat (limited to 'source4/build/smb_build/cflags.pm')
-rwxr-xr-x | source4/build/smb_build/cflags.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source4/build/smb_build/cflags.pm b/source4/build/smb_build/cflags.pm index 2f2a4a3868..ad6cd42c65 100755 --- a/source4/build/smb_build/cflags.pm +++ b/source4/build/smb_build/cflags.pm @@ -32,7 +32,7 @@ sub create_cflags($$$$) { my @sorted_cflags = @{$key->{FINAL_CFLAGS}}; if ($sort_available) { - @sorted_cflags = sort(by_path, @{$key->{FINAL_CFLAGS}}); + @sorted_cflags = sort by_path @{$key->{FINAL_CFLAGS}}; } # Rewrite CFLAGS so that both the source and the build |