diff options
-rw-r--r-- | packages/Makefile | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/packages/Makefile b/packages/Makefile index 4473c51a..4778510c 100644 --- a/packages/Makefile +++ b/packages/Makefile @@ -266,7 +266,10 @@ noncvs_install: -install -p $(packages_src)/noncvs/$(OS_NAME)/bin/*.* $(bindir) -install -p $(packages_src)/noncvs/$(OS_NAME)/doc/5.reference/*.* $(helpdir) -install -p $(packages_src)/noncvs/$(OS_NAME)/extra/*.* $(objectsdir) - -install -p $(packages_src)/noncvs/$(OS_NAME)/extra/Gem/*.* $(objectsdir)/Gem +ifeq ($(OS_NAME),windows) + -install -p $(packages_src)/noncvs/windows/extra/Gem/*.* \ + $(objectsdir)/$(GEM_NAME)/ +endif -test -d $(packages_src)/noncvs/$(OS_NAME)/gripd && \ install -d $(DESTDIR)$(prefix)/gripd -install -p $(packages_src)/noncvs/$(OS_NAME)/gripd/*.* \ |