Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-cw
Commits
533f0b5d
Commit
533f0b5d
authored
Jul 30, 2003
by
Francois Gouget
Committed by
Alexandre Julliard
Jul 30, 2003
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
'grep -q' is not portable -> don't use it.
parent
17afa80a
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
PACKAGING
documentation/PACKAGING
+1
-1
wineinstall
tools/wineinstall
+1
-1
No files found.
documentation/PACKAGING
View file @
533f0b5d
...
...
@@ -448,7 +448,7 @@ You will need to package the files:
The post-install script:
if ! grep
-q /usr/X11R6/lib/wine /etc/ld.so.conf
; then
if ! grep
/usr/X11R6/lib/wine /etc/ld.so.conf >/dev/null
; then
echo "/usr/X11R6/lib/wine" >> /etc/ld.so.conf
fi
/sbin/ldconfig
...
...
tools/wineinstall
View file @
533f0b5d
...
...
@@ -274,7 +274,7 @@ then {
# to our sucommand string
if
[
-f
/etc/ld.so.conf
]
then
if
!
grep
-
qs
"
$libdir
"
/etc/ld.so.conf
if
!
grep
-
s
"
$libdir
"
/etc/ld.so.conf
>
/dev/null 2>&1
then
{
echo
echo
"
$libdir
doesn't exist in your /etc/ld.so.conf, it will be added"
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment