ede/proj-shared.el: Remove leftover obsolete EIEIO name arguments

* lisp/cedet/ede/proj-shared.el (ede-gcc-shared-compiler)
(ede-gcc-libtool-shared-compiler, ede-cc-linker-libtool)
(ede-g++-shared-compiler, ede-g++-libtool-shared-compiler)
(ede-g++-linker-libtool): Remove obsolete name argument to `clone`.
This commit is contained in:
Stefan Monnier 2026-02-13 23:48:32 -05:00
parent 5d310e0059
commit 9fe325c935

View file

@ -52,7 +52,6 @@ Use ldlibs to add addition libraries.")
(defvar ede-gcc-shared-compiler
(clone ede-gcc-compiler
"ede-c-shared-compiler"
:name "gcc -shared"
:variables '(("CC_SHARED" . "gcc")
("C_SHARED_COMPILE" .
@ -68,7 +67,6 @@ Use ldlibs to add addition libraries.")
(defvar ede-gcc-libtool-shared-compiler
(clone ede-gcc-shared-compiler
"ede-c-shared-compiler-libtool"
:name "libtool"
:variables '(("LIBTOOL" . "libtool")
("LTCOMPILE" . "$(LIBTOOL) --mode=compile $(CC) $(DEFS) $(INCLUDES) $(CPPFLAGS) $(CFLAGS)")
@ -87,7 +85,6 @@ Use ldlibs to add addition libraries.")
(defvar ede-cc-linker-libtool
(clone ede-cc-linker
"ede-cc-linker-libtool"
:name "cc shared"
;; Only use this linker when c++ exists.
:sourcetype '(ede-source-c++)
@ -102,7 +99,6 @@ Use ldlibs to add addition libraries.")
(defvar ede-g++-shared-compiler
(clone ede-g++-compiler
"ede-c++-shared-compiler"
:name "gcc -shared"
:variables '(("CXX_SHARED" . "g++")
("CXX_SHARED_COMPILE" .
@ -114,7 +110,6 @@ Use ldlibs to add addition libraries.")
(defvar ede-g++-libtool-shared-compiler
(clone ede-g++-shared-compiler
"ede-c++-shared-compiler-libtool"
:name "libtool"
:variables '(("CXX" "g++")
("LIBTOOL" . "libtool")
@ -133,7 +128,6 @@ Use ldlibs to add addition libraries.")
(defvar ede-g++-linker-libtool
(clone ede-g++-linker
"ede-g++-linker-libtool"
:name "g++"
;; Only use this linker when c++ exists.
:sourcetype '(ede-source-c++)