trio: make 'mk all' explain why it does nothing on non-x11 systems - plan9port - [fork] Plan 9 from user space
(HTM) git clone git://src.adamsgaard.dk/plan9port
(DIR) Log
(DIR) Files
(DIR) Refs
(DIR) README
(DIR) LICENSE
---
(DIR) commit c63d31a8c1d02e7fa45403a5a10373439d29b250
(DIR) parent 3d6fc088f028e0267ecbc64e21eadbe9ca1bcb83
(HTM) Author: Russ Cox <rsc@swtch.com>
Date: Thu, 15 Nov 2018 22:05:39 -0500
rio: make 'mk all' explain why it does nothing on non-x11 systems
Fixes #98.
Diffstat:
M src/cmd/rio/mkriorules.sh | 6 ++++--
1 file changed, 4 insertions(+), 2 deletions(-)
---
(DIR) diff --git a/src/cmd/rio/mkriorules.sh b/src/cmd/rio/mkriorules.sh
t@@ -1,6 +1,8 @@
if [ "x$WSYSTYPE" != xx11 ]; then
- echo 'all install clean nuke:Q:'
- echo ' #'
+ echo 'default:V: all'
+ echo
+ echo 'all install clean nuke:'
+ echo ' # WSYSTYPE is not x11, and rio is only for x11'
exit 0
fi
cat $PLAN9/src/mkmany