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:
parent
7d60ca4432
commit
6c8370d728
|
@ -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"))
|
||||
|
|
Loading…
Reference in New Issue