On Wed, May 21, 2008 at 10:54 AM,  <[EMAIL PROTECTED]> wrote:
> Author: fperrad
> Date: Wed May 21 07:54:27 2008
> New Revision: 27714
>
> Modified:
>   trunk/config/gen/makefiles/root.in
>
> Log:
> [build]
>  - fix 'make realclean' on Windows (partial revert of r27361)
>
> The input line is too long.
> make: *** [prog-clean] Error 255
>
> Modified: trunk/config/gen/makefiles/root.in
> ==============================================================================
> --- trunk/config/gen/makefiles/root.in  (original)
> +++ trunk/config/gen/makefiles/root.in  Wed May 21 07:54:27 2008
> @@ -1627,7 +1627,7 @@
>        $(PERL) $(BUILD_TOOLS_DIR)/c2str.pl --init
>        $(RM_F) \
>     $(SRC_DIR)/string_private_cstring.h \
> -    $(STR_FILES) \
> +    "$(SRC_DIR)/*.str" "$(SRC_DIR)/io/*.str" "$(SRC_DIR)/pmc/*.str" \
>     "src/pmc/*.c" "src/pmc/pmc_*.h" "src/pmc/*.dump" \
>     vtable.dump "*.def" "*.lib" "*.exp"

Let's add another invocation of $(RM_F) rather than have to maintain
multiple lists of PMC files, or we'll end up having to maintain this
again the next time a .str file is added in a new directory.

(And sorry I broke Windows.)

-- 
Will "Coke" Coleda

Reply via email to