From f9b2fb4e78b36b812f476efad47eccb26a12bffe Mon Sep 17 00:00:00 2001 From: Ian Jackson Date: Fri, 20 Feb 2015 18:51:07 +0000 Subject: [PATCH] Remove some more build output files Signed-off-by: Ian Jackson --- .gitignore | 3 ++ libsympathy-config | 94 ------------------------------------------ libsympathy-config.src | 94 ------------------------------------------ 3 files changed, 3 insertions(+), 188 deletions(-) delete mode 100755 libsympathy-config delete mode 100755 libsympathy-config.src diff --git a/.gitignore b/.gitignore index 9191dc8..8fda08e 100644 --- a/.gitignore +++ b/.gitignore @@ -28,3 +28,6 @@ src/Makefile src/Makefile.in test/Makefile test/Makefile.in + +libsympathy-config +libsympathy-config.src diff --git a/libsympathy-config b/libsympathy-config deleted file mode 100755 index aaf3c54..0000000 --- a/libsympathy-config +++ /dev/null @@ -1,94 +0,0 @@ -#!/bin/sh -# -# libsympathy-config.src.in: -# -# Copyright (c) 2008 James McKenzie , -# All rights reserved. -# -# $Id: libsympathy-config.src.in,v 1.1 2008/02/03 16:20:23 james Exp $ -# -# $Log: libsympathy-config.src.in,v $ -# Revision 1.1 2008/02/03 16:20:23 james -# *** empty log message *** -# -# -# -# - -prefix=/usr/local -exec_prefix=${prefix} -exec_prefix_set=no - -usage() -{ - cat <&2 -fi - -while test $# -gt 0; do - case "$1" in - -*=*) optarg=`echo "$1" | sed 's/[-_a-zA-Z0-9]*=//'` ;; - *) optarg= ;; - esac - - case $1 in - --prefix=*) - prefix=$optarg - if test $exec_prefix_set = no ; then - exec_prefix=$optarg - fi - ;; - --prefix) - echo_prefix=yes - ;; - --exec-prefix=*) - exec_prefix=$optarg - exec_prefix_set=yes - ;; - --exec-prefix) - echo_exec_prefix=yes - ;; - --version) - echo 1.2.1-E - exit 0 - ;; - --cflags) - if test "${prefix}/include" != /usr/include ; then - includes="-I${prefix}/include" - fi - echo_cflags=yes - ;; - --libs) - echo_libs=yes - ;; - *) - usage 1 1>&2 - ;; - esac - shift -done - -if test "$echo_prefix" = "yes"; then - echo $prefix -fi -if test "$echo_exec_prefix" = "yes"; then - echo $exec_prefix -fi -if test "$echo_cflags" = "yes"; then - echo $includes -fi -if test "$echo_libs" = "yes"; then - echo -L${exec_prefix}/lib -lsympathy -fi diff --git a/libsympathy-config.src b/libsympathy-config.src deleted file mode 100755 index 16232d6..0000000 --- a/libsympathy-config.src +++ /dev/null @@ -1,94 +0,0 @@ -#!/bin/sh -# -# libsympathy-config.src.in: -# -# Copyright (c) 2008 James McKenzie , -# All rights reserved. -# -# $Id: libsympathy-config.src.in,v 1.1 2008/02/03 16:20:23 james Exp $ -# -# $Log: libsympathy-config.src.in,v $ -# Revision 1.1 2008/02/03 16:20:23 james -# *** empty log message *** -# -# -# -# - -prefix=/usr/local -exec_prefix=${prefix} -exec_prefix_set=no - -usage() -{ - cat <&2 -fi - -while test $# -gt 0; do - case "$1" in - -*=*) optarg=`echo "$1" | sed 's/[-_a-zA-Z0-9]*=//'` ;; - *) optarg= ;; - esac - - case $1 in - --prefix=*) - prefix=$optarg - if test $exec_prefix_set = no ; then - exec_prefix=$optarg - fi - ;; - --prefix) - echo_prefix=yes - ;; - --exec-prefix=*) - exec_prefix=$optarg - exec_prefix_set=yes - ;; - --exec-prefix) - echo_exec_prefix=yes - ;; - --version) - echo %VERSION% - exit 0 - ;; - --cflags) - if test "${prefix}/include" != /usr/include ; then - includes="-I${prefix}/include" - fi - echo_cflags=yes - ;; - --libs) - echo_libs=yes - ;; - *) - usage 1 1>&2 - ;; - esac - shift -done - -if test "$echo_prefix" = "yes"; then - echo $prefix -fi -if test "$echo_exec_prefix" = "yes"; then - echo $exec_prefix -fi -if test "$echo_cflags" = "yes"; then - echo $includes -fi -if test "$echo_libs" = "yes"; then - echo -L${exec_prefix}/lib -lsympathy -fi -- 2.30.2