From b7c58488dedead646b3aad2d381cfb0de4a69056 Mon Sep 17 00:00:00 2001 From: silt Date: Mon, 5 Dec 2022 09:43:58 -0500 Subject: [PATCH] add license info to build.rs --- build.rs | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/build.rs b/build.rs index d98132e..b3aa872 100644 --- a/build.rs +++ b/build.rs @@ -1,3 +1,6 @@ +// Copyright (c) 2022 silt +// SPDX-License-Identifier: AGPL-3.0-or-later + use std::env; use std::process::{Command, exit}; @@ -44,4 +47,4 @@ fn main() -> Result<(), Box> { handler_ld_false.wait(); Ok(()) -} \ No newline at end of file +}