Function: ede-proj-configure-recreate

ede-proj-configure-recreate is a byte-compiled function defined in pconf.el.gz.

Signature

(ede-proj-configure-recreate ARG &rest ARGS)

Implementations

(ede-proj-configure-recreate (THIS ede-proj-project)) in `ede/pconf.el'.

Delete project THIS's configure script and start over.

Source Code

;; Defined in /usr/src/emacs/lisp/cedet/ede/pconf.el.gz
(cl-defmethod ede-proj-configure-recreate ((this ede-proj-project))
  "Delete project THIS's configure script and start over."
  (if (not (ede-proj-configure-file this))
      (error "Could not determine configure.ac for %S" (eieio-object-name this)))
  (let ((b (get-file-buffer (ede-proj-configure-file this))))
    ;; Destroy all evidence of the old configure.ac
    (delete-file (ede-proj-configure-file this))
    (if b (kill-buffer b)))
  (ede-proj-configure-synchronize this))