File tree Expand file tree Collapse file tree 1 file changed +8
-8
lines changed Expand file tree Collapse file tree 1 file changed +8
-8
lines changed Original file line number Diff line number Diff 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
129129Uninstall libmypaint with ` make uninstall ` .
130130
@@ -137,22 +137,22 @@ Make sure that pkg-config can see libmypaint before trying to build with it.
137137If it's not found, you'll need to add the relevant pkgconfig directory to
138138the ` 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
142142Make sure ldconfig can see libmypaint as well
143143
144- $ sudo ldconfig -p |grep -i libmypaint
144+ # ldconfig -p |grep -i libmypaint
145145
146146If it's not found, you'll need to add the relevant lib directory to
147147the 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
152152Alternatively, 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
You can’t perform that action at this time.
0 commit comments