diff options
author | Jelmer Vernooij <jelmer@samba.org> | 2008-02-25 18:44:52 +0100 |
---|---|---|
committer | Jelmer Vernooij <jelmer@samba.org> | 2008-02-25 18:44:52 +0100 |
commit | 8e42aee98e09f6d59031f5bcf2ae454f1305f127 (patch) | |
tree | 56f6192c1867c9c5cbe171cd8d8093a122dffeb6 /source4/build/smb_build | |
parent | 6c3ff9acd104dd0d55db41c3e049f3fe329c2e5d (diff) | |
download | samba-8e42aee98e09f6d59031f5bcf2ae454f1305f127.tar.gz samba-8e42aee98e09f6d59031f5bcf2ae454f1305f127.tar.bz2 samba-8e42aee98e09f6d59031f5bcf2ae454f1305f127.zip |
Remove workaround for some non-GNU makes.
(This used to be commit d817bcdc290cb03a16f10a11250ae35c1d36c848)
Diffstat (limited to 'source4/build/smb_build')
-rw-r--r-- | source4/build/smb_build/env.pm | 1 | ||||
-rw-r--r-- | source4/build/smb_build/main.pl | 2 |
2 files changed, 2 insertions, 1 deletions
diff --git a/source4/build/smb_build/env.pm b/source4/build/smb_build/env.pm index 76cd8d1a26..01e05d57e3 100644 --- a/source4/build/smb_build/env.pm +++ b/source4/build/smb_build/env.pm @@ -50,7 +50,6 @@ sub _set_config($$) } $self->{developer} = ($self->{config}->{developer} eq "yes"); - $self->{gnu_make} = ($self->{config}->{GNU_MAKE} eq "yes"); $self->{automatic_deps} = ($self->{config}->{automatic_dependencies} eq "yes"); } diff --git a/source4/build/smb_build/main.pl b/source4/build/smb_build/main.pl index 86bbb44a8b..acf8928d32 100644 --- a/source4/build/smb_build/main.pl +++ b/source4/build/smb_build/main.pl @@ -106,4 +106,6 @@ To run binaries without installing, set the following environment variable: EOF } +print "To build Samba, run $config::config{MAKE}\n"; + 1; |