VirtualBox

Changeset 68815 in vbox


Ignore:
Timestamp:
Sep 22, 2017 12:00:11 PM (7 years ago)
Author:
vboxsync
Message:

Makefile.kmk: use mv/cp/rm sequence to lose the timestamp of the downloaded zip files for additions/docs/efi/extpack (wget in the script sets the timestamp even without asking for it, and on some systems we need to use an old wget executable which doesn't understand the option for skipping timestamp setting)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/Makefile.kmk

    r68805 r68815  
    295295        $(RM) -f -- "$@" "$@.tmp"
    296296        $(SHELL) $(PATH_DEVTOOLS)/bin/additions.sh --cmd fetch --filename "$@.tmp"
     297        ## @todo r=klaus replace mv/cp/rm sequence by touch or some equivalent to lose the timestamp
     298        $(MV) "$@.tmp" "$@.tmp2"
     299        $(CP) "$@.tmp2" "$@.tmp"
     300        $(RM) -f "$@.tmp2"
    297301        $(MV) -f -- "$@.tmp" "$@"
    298302
     
    338342        $(RM) -f -- "$@" "$@.tmp"
    339343        $(SHELL) $(PATH_DEVTOOLS)/bin/documentation.sh --cmd fetch --filename "$@.tmp"
     344        ## @todo r=klaus replace mv/cp/rm sequence by touch or some equivalent to lose the timestamp
     345        $(MV) "$@.tmp" "$@.tmp2"
     346        $(CP) "$@.tmp2" "$@.tmp"
     347        $(RM) -f "$@.tmp2"
    340348        $(MV) -f -- "$@.tmp" "$@"
    341349
     
    404412        $(RM) -f -- "$@" "$@.tmp"
    405413        $(SHELL) $(PATH_DEVTOOLS)/bin/efi_firmware.sh --cmd fetch --filename "$@.tmp"
     414        ## @todo r=klaus replace mv/cp/rm sequence by touch or some equivalent to lose the timestamp
     415        $(MV) "$@.tmp" "$@.tmp2"
     416        $(CP) "$@.tmp2" "$@.tmp"
     417        $(RM) -f "$@.tmp2"
    406418        $(MV) -f -- "$@.tmp" "$@"
    407419
     
    440452        $(RM) -f -- "$@.tmp" "$@"
    441453        $(SHELL) $(PATH_DEVTOOLS)/bin/extpacks.sh --cmd fetch --filename "$@.tmp" --vbox-version "$(VBOX_VERSION_STRING)"
     454        ## @todo r=klaus replace mv/cp/rm sequence by touch or some equivalent to lose the timestamp
     455        $(MV) "$@.tmp" "$@.tmp2"
     456        $(CP) "$@.tmp2" "$@.tmp"
     457        $(RM) -f "$@.tmp2"
    442458        $(MV) -f -- "$@.tmp" "$@"
    443459
Note: See TracChangeset for help on using the changeset viewer.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette