Revert "evas: Fix distcheck by disabling shaders generation"

this breaks the simplest configure + make ... so obviously it's broken
This commit is contained in:
Carsten Haitzler 2016-06-24 09:53:37 +09:00
parent 350306c5ea
commit 0b69356f1b
2 changed files with 0 additions and 13 deletions

View File

@ -3,16 +3,9 @@
# This script will generate a C file containing all the shaders used by Evas
DIR=`dirname $0`
cd $DIR/../../../../../
OUTPUT="$DIR/evas_gl_shaders.x"
# Skip generation during make distcheck
if [ "${top_distdir}" != "" ] ; then exit 0; fi
# Skip generation if file can not be written to
if [ ! -w ${OUTPUT} ] ; then exit 0; fi
# Skip generation if there is no diff (or no git)
if ! git rev-parse 2>> /dev/null >> /dev/null ; then exit 0 ; fi
if git diff --quiet --exit-code -- "$DIR"

View File

@ -7,12 +7,6 @@ cd $DIR/../../../../../
OUTPUT="$DIR/evas_gl_3d_shaders.x"
# Skip generation during make distcheck
if [ "${top_distdir}" != "" ] ; then exit 0; fi
# Skip generation if file can not be written to
if [ ! -w ${OUTPUT} ] ; then exit 0; fi
# Skip generation if there is no diff (or no git)
if ! git rev-parse 2>> /dev/null >> /dev/null ; then exit 0 ; fi
if git diff --quiet --exit-code -- "$DIR"