aboutsummaryrefslogtreecommitdiffstats
path: root/lang/cint/files/patch-tool-INSTALLBIN
blob: 7ac7e51b3e6eae6ba1c91b9930606ceb5098c6ad (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
--- tool/INSTALLBIN.orig    Tue Aug 21 15:08:47 2007
+++ tool/INSTALLBIN Tue Aug 21 15:14:16 2007
@@ -96,17 +96,17 @@
 #####################################################################
 # Copy lib files
 #####################################################################
-mkdir -p $LIBDIR/src
 for i in include/*; do
   if test -d $i; then mkdir -p $LIBDIR/$i; fi
 done
 mkdir -p $LIBDIR/lib/prec_stl
 mkdir -p $LIBDIR/lib/longlong
 mkdir -p $LIBDIR/stl
+mkdir -p $LIBDIR/inc
 mkdir -p $LIBDIR/main
 
 # Copy lib files
-FILELIST="MAKEINFO include/* include/*/* stl/* lib/prec_stl/* lib/longlong/longlong.h G__ci.h main/*"
+FILELIST="include/* include/*/* stl/* lib/prec_stl/* lib/longlong/longlong.h inc/* main/*"
 # Add either shared or static library to $FILELIST
 if test -f libcint.so; then
   FILELIST="$FILELIST libcint.so"
@@ -115,7 +115,7 @@
 fi
 for i in $FILELIST; do
   case $i in
-  include/make*|include/Make*|*/setup*)
+  include/make*|include/Make*|*/setup*|*/CVS|*/CVS/*)
     ;;
   *)
     if ! test -d $i; then echo -n "$i "; cp $i $LIBDIR/$i; fi