Revert "For nls/*.pre, allow people to comment lines by starting them with '##'."

As of commit c9d20e3 the initial double-hashes are replaced with proper C comments.

This reverts commit a225a0be48.
This commit is contained in:
James Cloos 2008-12-07 04:09:46 -05:00
parent c9d20e3f69
commit b7502abfe2

View file

@ -24,6 +24,5 @@ CPP_SED_MAGIC = $(SED) -e '/^\# *[0-9][0-9]* *.*$$/d' \
-e '/^[ ]*XHASH/s/XHASH/\#/' \
-e '/\@\@$$/s/\@\@$$/\\/'
# Allow people to comment out lines by starting them with '##'
.pre:
$(SED) -e '/^\#\#/d' $< | $(RAWCPP) $(RAWCPPFLAGS) $(CPP_FILES_FLAGS) | $(CPP_SED_MAGIC) > $@
$(RAWCPP) $(RAWCPPFLAGS) $(CPP_FILES_FLAGS) < $< | $(CPP_SED_MAGIC) > $@