{"id":1378,"url":"https://patchwork.libcamera.org/api/patches/1378/?format=json","web_url":"https://patchwork.libcamera.org/patch/1378/","project":{"id":1,"url":"https://patchwork.libcamera.org/api/projects/1/?format=json","name":"libcamera","link_name":"libcamera","list_id":"libcamera_core","list_email":"libcamera-devel@lists.libcamera.org","web_url":"","scm_url":"","webscm_url":""},"msgid":"<20190608111400.8480-1-laurent.pinchart@ideasonboard.com>","date":"2019-06-08T11:14:00","name":"[libcamera-devel] Documentation: Use absolute paths for Doxygen EXCLUDE files","commit_ref":"255e58385784c7190194d4b8ba0523ad1e038ac4","pull_url":null,"state":"accepted","archived":false,"hash":"7f5853e999470cf60a57060ccda2c31444b750d5","submitter":{"id":2,"url":"https://patchwork.libcamera.org/api/people/2/?format=json","name":"Laurent Pinchart","email":"laurent.pinchart@ideasonboard.com"},"delegate":null,"mbox":"https://patchwork.libcamera.org/patch/1378/mbox/","series":[{"id":341,"url":"https://patchwork.libcamera.org/api/series/341/?format=json","web_url":"https://patchwork.libcamera.org/project/libcamera/list/?series=341","date":"2019-06-08T11:14:00","name":"[libcamera-devel] Documentation: Use absolute paths for Doxygen EXCLUDE files","version":1,"mbox":"https://patchwork.libcamera.org/series/341/mbox/"}],"comments":"https://patchwork.libcamera.org/api/patches/1378/comments/","check":"pending","checks":"https://patchwork.libcamera.org/api/patches/1378/checks/","tags":{},"headers":{"Return-Path":"<laurent.pinchart@ideasonboard.com>","Received":["from perceval.ideasonboard.com (perceval.ideasonboard.com\n\t[IPv6:2001:4b98:dc2:55:216:3eff:fef7:d647])\n\tby lancelot.ideasonboard.com (Postfix) with ESMTPS id 934856B7E4\n\tfor <libcamera-devel@lists.libcamera.org>;\n\tSat,  8 Jun 2019 13:14:18 +0200 (CEST)","from pendragon.home (unknown\n\t[IPv6:2a02:a03f:44f0:8500:ca05:8177:199c:fed4])\n\tby perceval.ideasonboard.com (Postfix) with ESMTPSA id 2F6735D\n\tfor <libcamera-devel@lists.libcamera.org>;\n\tSat,  8 Jun 2019 13:14:18 +0200 (CEST)"],"DKIM-Signature":"v=1; a=rsa-sha256; c=relaxed/simple; d=ideasonboard.com;\n\ts=mail; t=1559992458;\n\tbh=rw0EqOSFmzGt/YGnkLJycTCL4+Sv3PRP/p8hYT9LFI8=;\n\th=From:To:Subject:Date:From;\n\tb=Kauw75bnFF0Xiw5pOy5Tzeb8dVnaYD9AkpTfW8nUnWAI/U94Mw+7h5qDhfEMGFDrD\n\tdA6Nn0nfJkut0O5HT1/FHJLkvhvPgIyg2LaVF6iFShXz/2SrLGN3Y2p1s3wHmX2cgo\n\tXW40AY9mol1KI2WFr4wxLQfEkLS65/SFow1BZ7kc=","From":"Laurent Pinchart <laurent.pinchart@ideasonboard.com>","To":"libcamera-devel@lists.libcamera.org","Date":"Sat,  8 Jun 2019 14:14:00 +0300","Message-Id":"<20190608111400.8480-1-laurent.pinchart@ideasonboard.com>","X-Mailer":"git-send-email 2.21.0","MIME-Version":"1.0","Content-Transfer-Encoding":"8bit","Subject":"[libcamera-devel] [PATCH] Documentation: Use absolute paths for\n\tDoxygen EXCLUDE files","X-BeenThere":"libcamera-devel@lists.libcamera.org","X-Mailman-Version":"2.1.23","Precedence":"list","List-Id":"<libcamera-devel.lists.libcamera.org>","List-Unsubscribe":"<https://lists.libcamera.org/options/libcamera-devel>,\n\t<mailto:libcamera-devel-request@lists.libcamera.org?subject=unsubscribe>","List-Archive":"<https://lists.libcamera.org/pipermail/libcamera-devel/>","List-Post":"<mailto:libcamera-devel@lists.libcamera.org>","List-Help":"<mailto:libcamera-devel-request@lists.libcamera.org?subject=help>","List-Subscribe":"<https://lists.libcamera.org/listinfo/libcamera-devel>,\n\t<mailto:libcamera-devel-request@lists.libcamera.org?subject=subscribe>","X-List-Received-Date":"Sat, 08 Jun 2019 11:14:18 -0000"},"content":"To avoid hardcoding a dependency between the source and build\ndirectories, use absolute paths for the Doxygen EXCLUDE files. The build\ndirectory can now be placed in any location, not just a direct\nsubdirectory of the source directory.\n\nSigned-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>\n---\n Documentation/Doxyfile.in | 10 +++++-----\n 1 file changed, 5 insertions(+), 5 deletions(-)","diff":"diff --git a/Documentation/Doxyfile.in b/Documentation/Doxyfile.in\nindex ac70efbff9fd..c58631200dd5 100644\n--- a/Documentation/Doxyfile.in\n+++ b/Documentation/Doxyfile.in\n@@ -833,11 +833,11 @@ RECURSIVE              = YES\n # Note that relative paths are relative to the directory from which doxygen is\n # run.\n \n-EXCLUDE                = ../src/libcamera/device_enumerator_sysfs.cpp \\\n-\t\t\t ../src/libcamera/device_enumerator_udev.cpp \\\n-\t\t\t ../src/libcamera/include/device_enumerator_sysfs.h \\\n-\t\t\t ../src/libcamera/include/device_enumerator_udev.h \\\n-\t\t\t ../src/libcamera/pipeline/\n+EXCLUDE                = @TOP_SRCDIR@/src/libcamera/device_enumerator_sysfs.cpp \\\n+\t\t\t @TOP_SRCDIR@/src/libcamera/device_enumerator_udev.cpp \\\n+\t\t\t @TOP_SRCDIR@/src/libcamera/include/device_enumerator_sysfs.h \\\n+\t\t\t @TOP_SRCDIR@/src/libcamera/include/device_enumerator_udev.h \\\n+\t\t\t @TOP_SRCDIR@/src/libcamera/pipeline/\n \n # The EXCLUDE_SYMLINKS tag can be used to select whether or not files or\n # directories that are symbolic links (a Unix file system feature) are excluded\n","prefixes":["libcamera-devel"]}