# HG changeset patch # User "Yann E. MORIN" # Date 1185824139 0 # Node ID 56b97558f14ae939ecd65e25883cf2a731d08e10 # Parent bd135ab29402f474ec498987e4d838a877672fea Fix the step shortcuts (using a dash would confuse make). diff -r bd135ab29402 -r 56b97558f14a docs/overview.txt --- a/docs/overview.txt Sun Jul 29 19:15:27 2007 +0000 +++ b/docs/overview.txt Mon Jul 30 19:35:39 2007 +0000 @@ -277,9 +277,9 @@ is equivalent to: ct-ng RESTART=libs_headers STOP=libc_headers -The shortcuts -step_name and step_name- allow to respectively stop or restart +The shortcuts +step_name and step_name+ allow to respectively stop or restart at that step. Thus: - ct-ng -libc_headers and: ct-ng libc_headers- + ct-ng +libc_headers and: ct-ng libc_headers+ are equivalent to: ct-ng STOP=libc_headers and: ct-ng RESTART=libc_headers diff -r bd135ab29402 -r 56b97558f14a steps.mk --- a/steps.mk Sun Jul 29 19:15:27 2007 +0000 +++ b/steps.mk Mon Jul 30 19:35:39 2007 +0000 @@ -19,11 +19,11 @@ $(CT_STEPS): @$(CT_NG) RESTART=$@ STOP=$@ build -$(patsubst %,-%,$(CT_STEPS)): - @$(CT_NG) STOP=$(patsubst -%,%,$@) build +$(patsubst %,+%,$(CT_STEPS)): + @$(CT_NG) STOP=$(patsubst +%,%,$@) build -$(patsubst %,%-,$(CT_STEPS)): - @$(CT_NG) RESTART=$(patsubst %-,%,$@) build +$(patsubst %,%+,$(CT_STEPS)): + @$(CT_NG) RESTART=$(patsubst %+,%,$@) build help-build:: @echo ' liststeps - List all build steps'