make-roslisp-exec.lisp should not create a package

This fixes a bug where fasls couldn't be loaded in slime because the package
ROSLISP-EXEC was missing. Apparently, the package was created by compilition
from rosmake but not present when loading the system in slime.
This commit is contained in:
Lorenz Moesenlechner 2010-08-19 15:06:26 +00:00
parent 7d60ca4432
commit 6c8370d728
1 changed files with 1 additions and 4 deletions

View File

@ -1,9 +1,6 @@
(require :asdf)
(defpackage :roslisp-exec
(:use :cl))
(in-package :roslisp-exec)
(in-package :cl-user)
(let ((p (sb-ext:posix-getenv "ROS_ROOT")))
(unless p (error "ROS_ROOT not set"))