Skip to content

Commit

Permalink
* Model/GNUmakefile: do not overwrite ADDITIONAL_INCLUDE_DIRS
Browse files Browse the repository at this point in the history
  value to help RPM build. In spec file ADDITIONAL_INCLUDE_DIRS can be sat
  to subdirectories which are create by RPM build tool.
  • Loading branch information
trunkmaster committed Mar 12, 2020
1 parent a655fe1 commit 70a001d
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
6 changes: 6 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
2020-03-12 Sergii Stoian <[email protected]>

* Model/GNUmakefile: do not overwrite ADDITIONAL_INCLUDE_DIRS
value to help RPM build. In spec file ADDITIONAL_INCLUDE_DIRS can be sat
to subdirectories which are create by RPM build tool.

2020-03-05 Sergii Stoian <[email protected]>

* Source/NSWindow.m (_applyFrame:): new helper method to do actual
Expand Down
4 changes: 2 additions & 2 deletions Model/GNUmakefile
Original file line number Diff line number Diff line change
Expand Up @@ -66,9 +66,9 @@ ADDITIONAL_CPPFLAGS += $(RUNTIME_DEFINE) $(GUI_DEFINE) $(BACKEND_DEFINE)
ADDITIONAL_LIB_DIRS += -L$(GNUSTEP_OBJ_DIR)
ifeq ($(GUI_LIB), gnu)
ADDITIONAL_LIB_DIRS += -L../Source/$(GNUSTEP_OBJ_DIR)
ADDITIONAL_INCLUDE_DIRS = -I../Headers/Additions -I../Headers
ADDITIONAL_INCLUDE_DIRS += -I../Headers/Additions -I../Headers
else
ADDITIONAL_INCLUDE_DIRS = -I../Headers/Additions
ADDITIONAL_INCLUDE_DIRS += -I../Headers/Additions
endif

ADDITIONAL_OBJC_FLAGS += $(BACKEND_DEFINE)
Expand Down

0 comments on commit 70a001d

Please sign in to comment.