Changeset 36222 in vbox
- Timestamp:
- Mar 9, 2011 12:36:23 PM (14 years ago)
- Location:
- trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Config.kmk
r36194 r36222 1603 1603 VBOX_FILESPLIT ?= $(PATH_OBJ)/filesplitter/filesplitter$(HOSTSUFF_EXE) 1604 1604 1605 # GNU tar if present. 1606 if1of ($(KBUILD_TARGET), linux os2 win) 1607 VBOX_GTAR ?= tar 1608 else if1of ($(KBUILD_TARGET), freebsd solaris) 1609 VBOX_GTAR ?= gtar 1610 endif 1611 1605 1612 # mkisofs 1606 1613 ifeq ($(KBUILD_HOST),win) … … 2774 2781 -Wshadow -Wuninitialized -Wunused-function -Wunused-label -Wunused-value -Wunused-variable \ 2775 2782 -Wformat \ 2776 -O2 -nodefaultlibs -fno-omit-frame-pointer -fno-strict-aliasing -fno-common -fno-exceptions -fno-rtti 2783 -O2 -nodefaultlibs -fno-omit-frame-pointer -fno-strict-aliasing -fno-common -fno-exceptions -fno-rtti 2777 2784 TEMPLATE_VBOXR0DRV_CXXFLAGS.x86 = $(TEMPLATE_VBOXR0DRV_CFLAGS.x86) 2778 2785 TEMPLATE_VBOXR0DRV_CXXFLAGS.amd64 = $(TEMPLATE_VBOXR0DRV_CFLAGS.amd64) -
trunk/src/VBox/Frontends/Common/VBoxKeyboard/Makefile.kmk
r29774 r36222 69 69 $(QUIET)$(RM) -f -- $@ $(patsubst %.bz2,%,$@) 70 70 $(QUIET)$(MKDIR) -p $(@D) 71 if 1of ($(KBUILD_TARGET), freebsd)72 $(QUIET) tar -cjf $@ \71 ifdef VBOX_GTAR 72 $(QUIET)$(VBOX_GTAR) --owner 0 --group 0 --ignore-failed-read -cjRf $@ \ 73 73 -C $(VBOX_KEYBOARD_STAGE_DIR) VBoxKeyboard 74 74 else 75 $(QUIET)tar - -owner 0 --group 0 --ignore-failed-read -cjRf $@ \75 $(QUIET)tar -cjf $@ \ 76 76 -C $(VBOX_KEYBOARD_STAGE_DIR) VBoxKeyboard 77 77 endif
Note:
See TracChangeset
for help on using the changeset viewer.