diff options
author | Yann E. MORIN" <yann.morin.1998@anciens.enib.fr> | 2007-07-30 19:35:39 +0000 |
---|---|---|
committer | Yann E. MORIN" <yann.morin.1998@anciens.enib.fr> | 2007-07-30 19:35:39 +0000 |
commit | 20e08ffa90f139fb977bf2d65e989853626210e8 (patch) | |
tree | c0b94b165791d90970ab8a034e6e9e2852b6c814 /steps.mk | |
parent | af1ecbd4f3844b51f5df38e7f44363714f60509d (diff) | |
download | crosstool-ng-20e08ffa90f139fb977bf2d65e989853626210e8.tar.gz crosstool-ng-20e08ffa90f139fb977bf2d65e989853626210e8.tar.bz2 crosstool-ng-20e08ffa90f139fb977bf2d65e989853626210e8.zip |
Fix the step shortcuts (using a dash would confuse make).
Diffstat (limited to 'steps.mk')
-rw-r--r-- | steps.mk | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -19,11 +19,11 @@ CT_STEPS := libc_check_config \ $(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' |