|
From: <ai...@us...> - 2013-08-12 22:59:09
|
Revision: 12480
http://sourceforge.net/p/plplot/code/12480
Author: airwin
Date: 2013-08-12 22:59:06 +0000 (Mon, 12 Aug 2013)
Log Message:
-----------
The *.h.cmake glob fails now since all of those have been renamed as
*.h.in. So remove that glob from the list of C sources to style.
Modified Paths:
--------------
trunk/scripts/style_source.sh
Modified: trunk/scripts/style_source.sh
===================================================================
--- trunk/scripts/style_source.sh 2013-08-09 23:38:29 UTC (rev 12479)
+++ trunk/scripts/style_source.sh 2013-08-12 22:59:06 UTC (rev 12480)
@@ -193,13 +193,13 @@
export csource_LIST
# Top level directory.
-csource_LIST="config.h.cmake"
+csource_LIST="config.h.in"
# src directory
csource_LIST="$csource_LIST src/*.[ch]"
# All C source (i.e., exclude qt.h) in include directory.
-csource_LIST="$csource_LIST $(ls include/*.h include/*.h.in include/*.h.cmake |grep -v qt.h)"
+csource_LIST="$csource_LIST $(ls include/*.h include/*.h.in |grep -v qt.h)"
# Every subdirectory of lib.
csource_LIST="$csource_LIST lib/*/*.[ch] lib/qsastime/qsastimeP.h.in"
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|