diff options
Diffstat (limited to 'stand/forth/menu.4th')
-rw-r--r-- | stand/forth/menu.4th | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/stand/forth/menu.4th b/stand/forth/menu.4th index 75e75e3e3654..cc9b0c867e87 100644 --- a/stand/forth/menu.4th +++ b/stand/forth/menu.4th @@ -24,7 +24,6 @@ \ OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF \ SUCH DAMAGE. \ -\ $FreeBSD$ marker task-menu.4th @@ -148,7 +147,7 @@ only forth definitions ; : acpipresent? ( -- flag ) \ Returns TRUE if ACPI is present, FALSE otherwise - s" hint.acpi.0.rsdp" getenv + s" acpi.rsdp" getenv dup -1 = if drop false exit then |