This is an automated email from the ASF dual-hosted git repository. huor pushed a commit to branch huor_orc in repository https://gitbox.apache.org/repos/asf/hawq.git
commit 7936ceb6c56a5ede922606994eaa720471c71fc7 Author: Ruilong Huo <[email protected]> AuthorDate: Thu Mar 14 17:37:02 2019 +0800 HAWQ-1679. Fix travis failure due to missing apache license information --- contrib/orc/cwrapper/Makefile | 20 +++++++++++++++++++- contrib/orc/cwrapper/format/Makefile | 20 +++++++++++++++++++- 2 files changed, 38 insertions(+), 2 deletions(-) diff --git a/contrib/orc/cwrapper/Makefile b/contrib/orc/cwrapper/Makefile index d731af8..f8b3c53 100644 --- a/contrib/orc/cwrapper/Makefile +++ b/contrib/orc/cwrapper/Makefile @@ -1,7 +1,25 @@ +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. +# + cwrapper.o: cwrapper.cpp cwrapper.h $(MAKE) -C format liborc_format.so g++ --shared -o cwrapper.o cwrapper.cpp -Lformat -lorc_format clean distclean: $(MAKE) -C format $@ || true; - rm -f ./cwrapper.o \ No newline at end of file + rm -f ./cwrapper.o diff --git a/contrib/orc/cwrapper/format/Makefile b/contrib/orc/cwrapper/format/Makefile index cc896f8..d5a4cbe 100644 --- a/contrib/orc/cwrapper/format/Makefile +++ b/contrib/orc/cwrapper/format/Makefile @@ -1,6 +1,24 @@ +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. +# + All: orc_format.so liborc_format.so: orc_format.cpp g++ --shared -o liborc_format.so orc_format.cpp clean: - rm -f ./liborc_format.so \ No newline at end of file + rm -f ./liborc_format.so
