mirror of
https://github.com/genodelabs/genode.git
synced 2024-12-18 21:27:56 +00:00
Fix misleading DosBox snippet in porting-guide
The included 'target.mk' snippet of DosBox suggests to use the contrib source directory directly to reference source files. Fixes #4305.
This commit is contained in:
parent
ecb1a6187c
commit
851d96de8a
@ -289,9 +289,9 @@ Examining the log file leaves us with the following list of source files:
|
||||
! FILTER_OUT_dos = cdrom_aspi_win32.cpp cdrom_ioctl_linux.cpp cdrom_ioctl_os2.cpp \
|
||||
! cdrom_ioctl_win32.cpp
|
||||
! SRC_CC_dos = $(filter-out $(FILTER_OUT_dos), \
|
||||
! $(notdir $(wildcard $(DOSBOX_DIR)/src/*.cpp)))
|
||||
! $(notdir $(wildcard $(DOSBOX_DIR)/src/dos/*.cpp)))
|
||||
! […]
|
||||
! SRC_CC = $(DOSBOX_DIR)/src/dosbox.cpp
|
||||
! SRC_CC = $(notdir $(DOSBOX_DIR)/src/dosbox.cpp)
|
||||
! SRC_CC += $(SRC_CC_cpu) $(SRC_CC_debug) $(SRC_CC_dos) $(SRC_CC_fpu) \
|
||||
! $(SRC_CC_gui) $(SRC_CC_hw) $(SRC_CC_hw_ser) $(SRC_CC_ints) \
|
||||
! $(SRC_CC_ints) $(SRC_CC_misc) $(SRC_CC_shell)
|
||||
|
Loading…
Reference in New Issue
Block a user