summaryrefslogtreecommitdiff
path: root/solenv
diff options
context:
space:
mode:
authorMichael Stahl <mstahl@redhat.com>2013-09-25 22:03:42 +0200
committerMichael Stahl <mstahl@redhat.com>2013-09-30 12:54:10 +0200
commit28b543ce3df3399783f093bf4cff4a745be5ec02 (patch)
treea517b5a585ca7e7ef5dce658028503ca15bc8685 /solenv
parenta0114eff777c343a16f13c4e6a99d63ef235cdc7 (diff)
gbuild: remove processdelivered.mk
obsolete since 6280f921050e6e879ca752abf4e8fb7553aba6f5. Change-Id: Idab0c904f05da66956ecbd8a01f3e9d2e2d7c605
Diffstat (limited to 'solenv')
-rw-r--r--solenv/gbuild/processdelivered.awk27
1 files changed, 0 insertions, 27 deletions
diff --git a/solenv/gbuild/processdelivered.awk b/solenv/gbuild/processdelivered.awk
deleted file mode 100644
index 3704a5ebb477..000000000000
--- a/solenv/gbuild/processdelivered.awk
+++ /dev/null
@@ -1,27 +0,0 @@
-#
-# This file is part of the LibreOffice project.
-#
-# This Source Code Form is subject to the terms of the Mozilla Public
-# License, v. 2.0. If a copy of the MPL was not distributed with this
-# file, You can obtain one at http://mozilla.org/MPL/2.0/.
-#
-# This file incorporates work covered by the following license notice:
-#
-# 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 .
-#
-
-BEGIN {
- RS=" "
- FS=":"
-}
-
-{
- if( NF == 2 )
- print "COPY " $1 " " $2;
-}