Newer
Older
Gary King
committed
;;; -*- Mode: common-lisp; Syntax: Common-Lisp; -*-
;; copyright (c) 2006-2007 Franz Inc, Oakland, CA - All rights reserved.
;;
;; The software, data and information contained herein are proprietary
;; to, and comprise valuable trade secrets of, Franz, Inc. They are
;; given in confidence by Franz, Inc. pursuant to a written license
;; agreement, and may be stored and used only in accordance with the terms
;; of such license.
;;
;; Restricted Rights Legend
;; ------------------------
;; Use, duplication, and disclosure of the software, data and information
;; contained herein by any agency, department or entity of the U.S.
;; Government are subject to restrictions of Restricted Rights for
;; Commercial Software developed at private expense as specified in
;; DOD FAR Supplement 52.227-7013 (c) (1) (ii), as applicable.
;;
;; $Id: db-agraph-preflight.asd,v 1.1.2.1 2009/01/16 23:58:53 gwking Exp $
;; -*- mode: common-lisp -*-
(in-package #:common-lisp-user)
(defpackage #:test-nested-components.system
(:use #:common-lisp #:asdf))
Gary King
committed
(in-package #:test-nested-components.system)
(defsystem test-nested-components-a
Gary King
committed
((:module "nested-components"
:pathname ""
:components ((:file "test-nested-1")))))
Gary King
committed
(defsystem test-nested-components-b
:pathname ""
Gary King
committed
((:file "test-nested-1")))
(defsystem db-agraph-preflight
Gary King
committed
((:module "preflight-checks"
:components ((:file "preflight")))))
Gary King
committed
(defsystem db-agraph-preflight-2
:pathname "preflight-checks"
Gary King
committed
((:file "preflight")))
Gary King
committed
newer traverse always fails
older traverse fails when db-agraph-preflight is evaluated, ok
when loaded or compiled
|#