diff options
author | Guy Harris <guy@alum.mit.edu> | 2002-01-21 23:55:34 +0000 |
---|---|---|
committer | Guy Harris <guy@alum.mit.edu> | 2002-01-21 23:55:34 +0000 |
commit | b9fbf593de0f7a9643c7f2bba491b66675daab6f (patch) | |
tree | c88619c102eb6eab5d000abfeded2e580479580c /packaging | |
parent | e6440c4f1663208b19faaf02283ed530adc33991 (diff) | |
download | wireshark-b9fbf593de0f7a9643c7f2bba491b66675daab6f.tar.gz wireshark-b9fbf593de0f7a9643c7f2bba491b66675daab6f.tar.bz2 wireshark-b9fbf593de0f7a9643c7f2bba491b66675daab6f.zip |
From Andrew Feren - don't use what is presumably a GNU find-specific
option in the find command in mkpkg, to make it work with the Solaris
find.
svn path=/trunk/; revision=4594
Diffstat (limited to 'packaging')
-rwxr-xr-x | packaging/svr4/mkpkg | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/packaging/svr4/mkpkg b/packaging/svr4/mkpkg index 06e8a40540..40e20eb94a 100755 --- a/packaging/svr4/mkpkg +++ b/packaging/svr4/mkpkg @@ -46,7 +46,7 @@ if [ ! -d $stagedir ] ; then exit 1 fi -find $stagedir/$prefix -mindepth 1 -print | \ +find $stagedir/$prefix/* -print | \ pkgproto $stagedir/$prefix=$prefix >> $prototype # Make the package installation directory |