2009-10-08 Chong Yidong <cyd@stupidchicken.com>
- * cedet/ede/proj.el (project-make-dist): Fix filename test.
+ * cedet/ede/proj.el (project-make-dist, project-compile-project):
+ Fix filename test.
(ede-proj-dist-makefile): Use expand-file-name instead of concat
to expand file names.
(let ((pm (ede-proj-dist-makefile proj))
(default-directory (file-name-directory (oref proj file))))
(ede-proj-setup-buildenvironment proj)
- (if (string= pm "Makefile.am") (setq pm "Makefile"))
+ (if (string= (file-name-nondirectory pm) "Makefile.am")
+ (setq pm (expand-file-name "Makefile"
+ (file-name-directory pm))))
(compile (concat ede-make-command" -f " pm " all"))))
;;; Target type specific compilations/debug