Fix the merge problem in fpkg

This commit is contained in:
Sameer Rahmani 2020-11-11 12:39:42 +00:00
parent 952c1dfef3
commit c5bdda95ce
1 changed files with 4 additions and 4 deletions

View File

@ -125,10 +125,10 @@
`(fg42-install-extension ,(eval pkgname))
`(use-package ,(eval pkgname) ,@details)))
;; (defun depends-on (pkgname &rest args)
;; "Install the package PKGNAME with respect to the ARGS."
;; (let ((pkg (apply 'make-fpkg-dependency :name pkgname args)))
;; (puthash pkgname pkg required-packages)))
(defun depends-on (pkgname &rest args)
"Install the package PKGNAME with respect to the ARGS."
(let ((pkg (apply 'make-fpkg-dependency :name pkgname args)))
(puthash pkgname pkg required-packages)))
(provide 'fpkg)