Changeset 78444 in vbox for trunk/src/VBox
- Timestamp:
- May 8, 2019 7:44:36 AM (6 years ago)
- svn:sync-xref-src-repo-rev:
- 130445
- Location:
- trunk/src/VBox/HostDrivers
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/HostDrivers/VBoxNetAdp/Makefile.kmk
r76553 r78444 176 176 $(QUIET)$(RM) -f -- $@ 177 177 ifndef VBOX_WITH_HARDENING 178 $(QUIET)$(SED) -e "s; -DVBOX_WITH_HARDENING;;g" --output $@ $<178 $(QUIET)$(SED) -e "s;VBOX_WITH_HARDENING;;g" --output $@ $< 179 179 else 180 180 $(QUIET)$(CP) -f $< $@ … … 208 208 $(QUIET)$(RM) -f -- $@ 209 209 ifndef VBOX_WITH_HARDENING 210 $(QUIET)$(SED) -e "s; -DVBOX_WITH_HARDENING;;g" --output $@ $<210 $(QUIET)$(SED) -e "s;VBOX_WITH_HARDENING;;g" --output $@ $< 211 211 else 212 212 $(QUIET)$(CP) -f $< $@ -
trunk/src/VBox/HostDrivers/VBoxNetFlt/Makefile.kmk
r76553 r78444 526 526 $(QUIET)$(RM) -f -- $@ 527 527 ifndef VBOX_WITH_HARDENING 528 $(QUIET)$(SED) -e "s; -DVBOX_WITH_HARDENING;;g" --output $@ $<528 $(QUIET)$(SED) -e "s;VBOX_WITH_HARDENING;;g" --output $@ $< 529 529 else 530 530 $(QUIET)$(CP) -f $< $@ … … 566 566 $(QUIET)$(CP) -f $< $@ 567 567 ifndef VBOX_WITH_HARDENING 568 $(QUIET)$(SED) -e "s; -DVBOX_WITH_HARDENING;;g" --output [email protected] $@568 $(QUIET)$(SED) -e "s;VBOX_WITH_HARDENING;;g" --output [email protected] $@ 569 569 ${QUIET}$(MV) -f [email protected] $@ 570 570 endif -
trunk/src/VBox/HostDrivers/VBoxPci/Makefile.kmk
r76553 r78444 68 68 $(QUIET)$(RM) -f -- $@ 69 69 ifndef VBOX_WITH_HARDENING 70 $(QUIET)$(SED) -e "s; -DVBOX_WITH_HARDENING;;g" --output $@ $<70 $(QUIET)$(SED) -e "s;VBOX_WITH_HARDENING;;g" --output $@ $< 71 71 else 72 72 $(QUIET)$(CP) -f $< $@ -
trunk/src/VBox/HostDrivers/linux/export_modules.sh
r76553 r78444 155 155 done 156 156 if [ -n "$VBOX_WITH_HARDENING" ]; then 157 sed -e "s; -DVBOX_WITH_EFLAGS_AC_SET_IN_VBOXDRV;;g" \158 -e "s; -DIPRT_WITH_EFLAGS_AC_PRESERVING;;g" \157 sed -e "s;VBOX_WITH_EFLAGS_AC_SET_IN_VBOXDRV;;g" \ 158 -e "s;IPRT_WITH_EFLAGS_AC_PRESERVING;;g" \ 159 159 < $PATH_VBOXDRV/linux/Makefile > $PATH_TMP/vboxdrv/Makefile 160 160 else 161 sed -e "s; -DVBOX_WITH_HARDENING;;g" \162 -e "s; -DVBOX_WITH_EFLAGS_AC_SET_IN_VBOXDRV;;g" \163 -e "s; -DIPRT_WITH_EFLAGS_AC_PRESERVING;;g" \161 sed -e "s;VBOX_WITH_HARDENING;;g" \ 162 -e "s;VBOX_WITH_EFLAGS_AC_SET_IN_VBOXDRV;;g" \ 163 -e "s;IPRT_WITH_EFLAGS_AC_PRESERVING;;g" \ 164 164 < $PATH_VBOXDRV/linux/Makefile > $PATH_TMP/vboxdrv/Makefile 165 165 fi … … 173 173 cat $PATH_VBOXNET/linux/Makefile > $PATH_TMP/vboxnetflt/Makefile 174 174 else 175 sed -e "s; -DVBOX_WITH_HARDENING;;g" < $PATH_VBOXNET/linux/Makefile > $PATH_TMP/vboxnetflt/Makefile175 sed -e "s;VBOX_WITH_HARDENING;;g" < $PATH_VBOXNET/linux/Makefile > $PATH_TMP/vboxnetflt/Makefile 176 176 fi 177 177 … … 184 184 cat $PATH_VBOXADP/linux/Makefile > $PATH_TMP/vboxnetadp/Makefile 185 185 else 186 sed -e "s; -DVBOX_WITH_HARDENING;;g" < $PATH_VBOXADP/linux/Makefile > $PATH_TMP/vboxnetadp/Makefile186 sed -e "s;VBOX_WITH_HARDENING;;g" < $PATH_VBOXADP/linux/Makefile > $PATH_TMP/vboxnetadp/Makefile 187 187 fi 188 188 … … 195 195 cat $PATH_VBOXPCI/linux/Makefile > $PATH_TMP/vboxpci/Makefile 196 196 else 197 sed -e "s; -DVBOX_WITH_HARDENING;;g" < $PATH_VBOXPCI/linux/Makefile > $PATH_TMP/vboxpci/Makefile197 sed -e "s;VBOX_WITH_HARDENING;;g" < $PATH_VBOXPCI/linux/Makefile > $PATH_TMP/vboxpci/Makefile 198 198 fi 199 199
Note:
See TracChangeset
for help on using the changeset viewer.