This is the mail archive of the gcc-patches@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[PATCH] add inc to list of suffix in libsanitizer/merge.sh


   Upstream llvm compiler-rts asan subdirectory now includes files with the *.inc suffix.
The attached patch adds this new suffix to the list of merged files. Okay for gcc trunk?
          Jack

libsanitizer/


2013-01-18  Jack Howarth <howarth@bromo.med.uc.edu>

	merge.sh: Add inc suffix for merged file listing.

Index: libsanitizer/merge.sh
===================================================================
--- libsanitizer/merge.sh	(revision 195295)
+++ libsanitizer/merge.sh	(working copy)
@@ -16,7 +16,7 @@ get_current_rev() {
 }
 
 list_files() {
-  (cd $1; ls *.{cc,h} 2> /dev/null)
+  (cd $1; ls *.{cc,h,inc} 2> /dev/null)
 
 }
 


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]