Changeset 12962 in vbox for trunk/src/VBox/Installer/linux
- Timestamp:
- Oct 2, 2008 10:10:55 PM (17 years ago)
- svn:sync-xref-src-repo-rev:
- 37394
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Installer/linux/Makefile.kmk
r12956 r12962 109 109 $(if $(VBOX_WITH_VBOXSDL),VBoxSDL $(if $(VBOX_WITH_HARDENING),VBoxSDL.so),) \ 110 110 VBoxSettings.so \ 111 VBoxSharedClipboard.so \ 112 VBoxSharedFolders.so \ 113 $(if $(VBOX_WITH_GUEST_PROPS),VBoxGuestPropSvc.so) \ 111 114 VBoxSVC \ 112 115 VBoxDDU.so \ … … 118 121 components/VBoxC.so \ 119 122 components/VBoxSVCM.so \ 120 components/VBoxXPCOMIPCC.so 123 components/VBoxXPCOMIPCC.so \ 124 $(if $(VBOX_OSE),,VRDPAuth.so) 125 121 126 122 127 # Do not remove relocation information of these binaries … … 129 134 VMMR0.r0 130 135 ifeq ($(KBUILD_TARGET_ARCH),amd64) 131 VBOX_LNX_STRIP_OBJ += \136 VBOX_LNX_STRIP_OBJ += \ 132 137 VBoxREM2.rel 133 138 endif … … 136 141 VBOX_LNX_NO_STRIP = \ 137 142 $(if $(VBOX_OSE),,LICENSE) \ 138 $(if $(VBOX_WITH_QT4GUI),\139 $(if $(VBOX_OSE),,License-$(VBOX_LICENSE_VER).html)) \140 143 components/VBoxXPCOMBase.xpt \ 141 144 components/VirtualBox_XPCOM.xpt \ … … 144 147 VBox.png \ 145 148 VBoxAddIF.sh \ 146 $(if $(VBOX_WITH_QT4GUI),VirtualBox.desktop,) \147 149 src 148 150 … … 153 155 VBoxKeyboard.so \ 154 156 VirtualBox \ 155 $(if $(VBOX_WITH_HARDENING),VirtualBox.so) 157 $(if $(VBOX_WITH_HARDENING),VirtualBox.so) \ 158 $(if $(VBOX_WITH_DEBUGGER_GUI),VBoxDbg.so) 156 159 VBOX_LNX_NO_STRIP += \ 160 VirtualBox.desktop \ 161 $(if $(VBOX_OSE),,License-$(VBOX_LICENSE_VER).html) \ 157 162 $(if $(VBOX_WITH_QT4_SUN),$(notdir $(wildcard $(PATH_BIN)/libVBox*)),) \ 158 163 $(foreach f,$(VBOX_APPROVED_GUI_LANGUAGES),nls/VirtualBox_$(f).qm nls/qt_$(f).qm) … … 165 170 endif 166 171 167 # Shared Folders 168 VBOX_LNX_STRIP_BIN += \ 169 VBoxSharedFolders.so \ 170 $(if $(VBOX_OSE),,VRDPAuth.so) 171 172 # Shared Clipboard 173 VBOX_LNX_STRIP_BIN += \ 174 VBoxSharedClipboard.so \ 175 $(if $(VBOX_WITH_DEBUGGER_GUI),VBoxDbg3.so,) 176 177 # Shared Info Services 178 VBOX_LNX_STRIP_BIN += \ 179 $(if $(VBOX_WITH_GUEST_PROPS),VBoxGuestPropSvc.so) 180 172 173 # Documentation 181 174 ifdef VBOX_WITH_DOCS_PACKING 182 175 VBOX_LNX_NO_STRIP += \ … … 191 184 endif 192 185 endif 186 187 # VRDP 193 188 ifdef VBOX_WITH_VRDP 194 189 VBOX_LNX_STRIP_BIN += \ … … 205 200 endif 206 201 endif 202 203 # Headless 207 204 ifdef VBOX_WITH_HEADLESS 208 205 VBOX_LNX_STRIP_BIN += \ … … 210 207 $(if $(VBOX_WITH_HARDENING),VBoxHeadless.so) 211 208 endif 209 210 # Webservices 212 211 ifdef VBOX_WITH_WEBSERVICES 213 212 VBOX_LNX_STRIP_BIN += \
Note:
See TracChangeset
for help on using the changeset viewer.