Skip to content

Commit 2eeda6a

Browse files
committed
README.md: replaced more instances of $ sudo with #
1 parent ec62ccc commit 2eeda6a

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

README.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -81,8 +81,8 @@ The traditional setup works just fine.
8181

8282
$ ./autogen.sh # Only needed when building from git.
8383
$ ./configure
84-
$ sudo make install
85-
$ sudo ldconfig
84+
# make install
85+
# ldconfig
8686

8787
### Maintainer mode
8888

@@ -124,7 +124,7 @@ This runs all the unit tests.
124124

125125
### Install
126126

127-
$ sudo make install
127+
# make install
128128

129129
Uninstall libmypaint with `make uninstall`.
130130

@@ -137,22 +137,22 @@ Make sure that pkg-config can see libmypaint before trying to build with it.
137137
If it's not found, you'll need to add the relevant pkgconfig directory to
138138
the `pkg-config` search path. For example, on CentOS, with a default install:
139139

140-
$ sudo sh -c "echo 'PKG_CONFIG_PATH=/usr/local/lib/pkgconfig' >>/etc/environment"
140+
# sh -c "echo 'PKG_CONFIG_PATH=/usr/local/lib/pkgconfig' >>/etc/environment"
141141

142142
Make sure ldconfig can see libmypaint as well
143143

144-
$ sudo ldconfig -p |grep -i libmypaint
144+
# ldconfig -p |grep -i libmypaint
145145

146146
If it's not found, you'll need to add the relevant lib directory to
147147
the LD_LIBRARY_PATH:
148148

149149
$ export LD_LIBRARY_PATH=/usr/local/lib
150-
$ sudo sh -c "echo 'LD_LIBRARY_PATH=/usr/local/lib' >>/etc/environment
150+
# sh -c "echo 'LD_LIBRARY_PATH=/usr/local/lib' >>/etc/environment
151151

152152
Alternatively, you may want to enable /usr/local for libraries. Arch and Redhat derivatives:
153153

154-
$ sudo sh -c "echo '/usr/local/lib' > /etc/ld.so.conf.d/usrlocal.conf"
155-
$ sudo ldconfig
154+
# sh -c "echo '/usr/local/lib' > /etc/ld.so.conf.d/usrlocal.conf"
155+
# ldconfig
156156

157157
## Contributing
158158

0 commit comments

Comments
 (0)