diff options
author | Russ Cox <rsc@swtch.com> | 2018-11-15 22:05:39 -0500 |
---|---|---|
committer | Russ Cox <rsc@swtch.com> | 2018-11-15 22:05:53 -0500 |
commit | c63d31a8c1d02e7fa45403a5a10373439d29b250 (patch) | |
tree | 09f992c47e3fa731a5d2647cf9952e373c1a43c6 /src/cmd/rio | |
parent | 3d6fc088f028e0267ecbc64e21eadbe9ca1bcb83 (diff) | |
download | plan9port-c63d31a8c1d02e7fa45403a5a10373439d29b250.tar.gz plan9port-c63d31a8c1d02e7fa45403a5a10373439d29b250.tar.bz2 plan9port-c63d31a8c1d02e7fa45403a5a10373439d29b250.zip |
rio: make 'mk all' explain why it does nothing on non-x11 systems
Fixes #98.
Diffstat (limited to 'src/cmd/rio')
-rw-r--r-- | src/cmd/rio/mkriorules.sh | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/cmd/rio/mkriorules.sh b/src/cmd/rio/mkriorules.sh index 76dda36b..25cacc79 100644 --- a/src/cmd/rio/mkriorules.sh +++ b/src/cmd/rio/mkriorules.sh @@ -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 |