mirror of
https://github.com/9fans/plan9port.git
synced 2025-01-24 11:41:58 +00:00
INSTALL: fix path of quote1 and quote2
Thanks to Akshat Kumar for reporting this issue. LGTM=seed, rsc R=rsc, seed https://codereview.appspot.com/173770043
This commit is contained in:
parent
6c7443a653
commit
734ca6356b
1 changed files with 3 additions and 3 deletions
6
INSTALL
6
INSTALL
|
@ -170,9 +170,9 @@ if $dobuild; then
|
||||||
echo " "
|
echo " "
|
||||||
echo "* Warning: not all binaries built successfully."
|
echo "* Warning: not all binaries built successfully."
|
||||||
fi
|
fi
|
||||||
if [ -f bin/quote1 ]; then
|
if [ -f $PLAN9/bin/quote1 ]; then
|
||||||
cp bin/quote1 'bin/"'
|
cp $PLAN9/bin/quote1 $PLAN9/bin/'"'
|
||||||
cp bin/quote2 'bin/""'
|
cp $PLAN9/bin/quote2 $PLAN9/bin/'""'
|
||||||
fi
|
fi
|
||||||
echo "* Cleaning up..."
|
echo "* Cleaning up..."
|
||||||
mk clean
|
mk clean
|
||||||
|
|
Loading…
Reference in a new issue