mirror of
https://github.com/curl/curl.git
synced 2024-12-03 06:20:31 +08:00
ad9bc5976d
Add licensing and copyright information for all files in this repository. This either happens in the file itself as a comment header or in the file `.reuse/dep5`. This commit also adds a Github workflow to check pull requests and adapts copyright.pl to the changes. Closes #8869
9 lines
230 B
Bash
Executable File
9 lines
230 B
Bash
Executable File
#!/bin/sh
|
|
#
|
|
# Copyright (C) 2000 - 2022 Daniel Stenberg, <daniel@haxx.se>, et al.
|
|
#
|
|
# SPDX-License-Identifier: curl
|
|
|
|
echo "*** Do not use buildconf. Instead, just use: autoreconf -fi" >&2
|
|
exec ${AUTORECONF:-autoreconf} -fi "${@}"
|