Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

CB-13964: Fixed make clean for windows #806

Merged
merged 4 commits into from Mar 19, 2018

Conversation

gandhirajan
Copy link
Contributor

This PR fixes 'make clean' command issue in windows OS.

Makefile Outdated
@@ -14,6 +14,8 @@ SHELL = cmd
JEKYLL = bundle.bat exec jekyll
CAT = type
LS = ls
RM = cmd /C del /Q /F
RMDIR = cmd /C rmdir /S /Q
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Nitpick: align equals signs.

Makefile Outdated
PLUGINS_APP := $(subst /,\,$(PLUGINS_APP))
CSS_DEST_DIR := $(subst /,\,$(CSS_DEST_DIR))
FETCHED_FILES := $(subst /,\,$(FETCHED_FILES))
endif
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This could break other uses of these files. Instead, change the definition of RM and RMDIR to escape slashes, like how makedir does it here.

Makefile Outdated
$(RM) $(FETCHED_FILES)
IF EXIST "$(CSS_DEST_DIR)" $(RMDIR) $(CSS_DEST_DIR)
IF EXIST "$(PROD_DIR)" $(RMDIR) $(PROD_DIR)
IF EXIST "$(DEV_DIR)" $(RMDIR) $(DEV_DIR)
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

As above, you can avoid the if/else here by defining RM differently. Also, you can avoid the IF EXIST by adding a - to the beginning of the line, which will tell Make to ignore any errors. So:

-$(RMDIR) $(CSS_DEST_DIR)

instead of

$(RMDIR) $(CSS_DEST_DIR)

Makefile Outdated

nuke: clean
$(RM) -r node_modules
$(RM) Gemfile.lock

.PHONY: clean usage help default build fetch $(DEV_DOCS)
.PHONY: clean usage help default build fetch $(DEV_DOCS)
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Nitpick: no newline at end of file.

Makefile Outdated
ifdef WINDOWS
RM = cmd /C del /Q /F $(subst /,\,$(1))
RMDIR = cmd /C rmdir /S /Q $(subst /,\,$(1))
endif
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

You can make non-Windows versions of these, and then you won't have to use Windows-specific logic in the clean target. So, add an else clause and just define:

else
RM = rm -f $(1)
RMDIR = rm -rf $(1)
endif

Makefile Outdated
-$(call RMDIR, $(CSS_DEST_DIR))
-$(call RMDIR, $(PROD_DIR))
-$(call RMDIR, $(DEV_DIR))
else
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

If you have RM and RMDIR defined for all platforms, you don't have to add Windows-specific logic here.

Makefile Outdated
$(call RM, $(FETCHED_FILES))
-$(call RMDIR, $(CSS_DEST_DIR))
-$(call RMDIR, $(PROD_DIR))
-$(call RMDIR, $(DEV_DIR))

nuke: clean
$(RM) -r node_modules
$(RM) Gemfile.lock
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

These also need to be changed to work with the new RM and RMDIR.

@dblotsky
Copy link
Contributor

@gandhirajan these changes look good to me

@janpio janpio merged commit c3d73c8 into apache:master Mar 19, 2018
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

3 participants