diff options
author | Daniel Burrows <dburrows@debian.org> | 2010-04-25 07:44:30 -0700 |
---|---|---|
committer | Daniel Burrows <dburrows@debian.org> | 2010-04-25 07:44:30 -0700 |
commit | 840f74c17c138108e295d084ae5a06be98feb99d (patch) | |
tree | acbd1718539c96a3f4ea5f2192609fab611ef725 /src/SConscript | |
parent | 1c8ce5375ae4af5635794cc8a5ced83388dcf374 (diff) | |
download | aptitude-840f74c17c138108e295d084ae5a06be98feb99d.tar.gz |
Add a "programs" dummy target that builds just the programs in src/.
I originally was going to have an "aptitude" target that builds aptitude,
but scons doesn't like having an alias that matches the basename of
a real target.
Diffstat (limited to 'src/SConscript')
-rw-r--r-- | src/SConscript | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/SConscript b/src/SConscript index 3123f8bc..a465e197 100644 --- a/src/SConscript +++ b/src/SConscript @@ -121,4 +121,6 @@ if programs_env.IsVariantActive('gtk'): Copy('$TARGET', '$SOURCE')) programs_env.Requires(aptitude, aptitude_glade) +programs_env.Alias('programs', aptitude) + Return('aptitude') |