- Timestamp:
- Apr 18, 2008 8:45:39 AM (17 years ago)
- svn:sync-xref-src-repo-rev:
- 29828
- Location:
- trunk/src/VBox
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/solaris/Installer/makepackage.sh
r8122 r8125 29 29 30 30 # check for GNU grep we use which might not ship with all Solaris 31 if test ! -f "$MY_GGREP" ||test ! -h "$MY_GGREP"; then31 if test ! -f "$MY_GGREP" && test ! -h "$MY_GGREP"; then 32 32 echo "## GNU grep not found in $MY_GGREP." 33 33 exit 1 -
trunk/src/VBox/Installer/solaris/makepackage.sh
r8123 r8125 30 30 31 31 # check for GNU grep we use which might not ship with all Solaris 32 if test ! -f "$MY_GGREP" ||test ! -h "$MY_GGREP"; then32 if test ! -f "$MY_GGREP" && test ! -h "$MY_GGREP"; then 33 33 echo "## GNU grep not found in $MY_GGREP." 34 34 exit 1 … … 36 36 37 37 # check for GNU tar we use which might not ship with all Solaris 38 if test ! -f "$MY_GTAR" ||test ! -h "$MY_GTAR"; then38 if test ! -f "$MY_GTAR" && test ! -h "$MY_GTAR"; then 39 39 echo "## GNU tar not found in $MY_GTAR." 40 40 exit 1
Note:
See TracChangeset
for help on using the changeset viewer.