- Timestamp:
- Sep 2, 2008 8:16:19 AM (16 years ago)
- Location:
- trunk/src/VBox/Installer/solaris
- Files:
-
- 1 added
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Installer/solaris/Makefile.kmk
r11923 r11962 409 409 vbi/vboxkern.pkginfo \ 410 410 vbi/makepackage.sh \ 411 vbi/preremove.sh \ 411 412 Makefile.kmk \ 412 413 $(PATH_ROOT)/src/VBox/Runtime/r0drv/solaris/vbi/32/vbi \ … … 426 427 $(QUIET)$(if $(VBOX_OSE),,$(INSTALL) -m 0644 $(PATH_BIN)/LICENSE $(SOLARIS_VBI_DIR)/vbox.copyright) 427 428 $(QUIET)$(INSTALL) -m 0755 $(PATH_CURRENT)/vbi/makepackage.sh $(SOLARIS_VBI_DIR)/makepackage.sh 429 $(QUIET)$(INSTALL) -m 0755 $(PATH_CURRENT)/vbi/preremove.sh $(SOLARIS_VBI_DIR)/preremove.sh 428 430 $(call MSG_L1,Creating install package: $(VBIPKG_FILENAME).pkg) 429 431 $(QUIET)$(SOLARIS_VBI_DIR)/makepackage.sh $(SOLARIS_VBI_DIR) $(VBIPKG_FILENAME) -
trunk/src/VBox/Installer/solaris/vbi/makepackage.sh
r9175 r11962 54 54 cd "$1" 55 55 echo 'i pkginfo=./vboxkern.pkginfo' > prototype 56 echo 'i preremove=./preremove.sh' >> prototype 56 57 if test -f "./vbox.copyright"; then 57 58 echo 'i copyright=./vbox.copyright' >> prototype 58 59 fi 59 find . -print | $VBOX_GGREP -v -E 'prototype|makepackage.sh| vboxkern.pkginfo|vbox.copyright' | pkgproto >> prototype60 find . -print | $VBOX_GGREP -v -E 'prototype|makepackage.sh|preremove.sh|vboxkern.pkginfo|vbox.copyright' | pkgproto >> prototype 60 61 61 62 $VBOX_AWK 'NF == 6 && $2 == "none" { $5 = "root"; $6 = "sys" } { print }' prototype > prototype2
Note:
See TracChangeset
for help on using the changeset viewer.