comparison gnulib-tool @ 9107:2878e8c70604

Ensure that also files under build-aux/ are distributed.
author Bruno Haible <bruno@clisp.org>
date Wed, 18 Jul 2007 23:45:37 +0000
parents 7f1880b27b89
children 33eb494700d6
comparison
equal deleted inserted replaced
9106:e5615537b0f3 9107:2878e8c70604
20 # This program is meant for authors or maintainers which want to import 20 # This program is meant for authors or maintainers which want to import
21 # modules from gnulib into their packages. 21 # modules from gnulib into their packages.
22 22
23 progname=$0 23 progname=$0
24 package=gnulib 24 package=gnulib
25 cvsdatestamp='$Date: 2007-07-14 01:42:14 $' 25 cvsdatestamp='$Date: 2007-07-18 23:45:37 $'
26 last_checkin_date=`echo "$cvsdatestamp" | sed -e 's,^\$[D]ate: ,,'` 26 last_checkin_date=`echo "$cvsdatestamp" | sed -e 's,^\$[D]ate: ,,'`
27 version=`echo "$last_checkin_date" | sed -e 's/ .*$//' -e 's,/,-,g'` 27 version=`echo "$last_checkin_date" | sed -e 's/ .*$//' -e 's,/,-,g'`
28 nl=' 28 nl='
29 ' 29 '
30 IFS=" "" $nl" 30 IFS=" "" $nl"
1221 echo "EXTRA_lib_SOURCES +=" $extra_files 1221 echo "EXTRA_lib_SOURCES +=" $extra_files
1222 echo 1222 echo
1223 fi 1223 fi
1224 ;; 1224 ;;
1225 esac 1225 esac
1226 # Synthesize an EXTRA_DIST augmentation also for the files in build-aux/.
1227 buildaux_files=`for f in $all_files; do \
1228 case $f in \
1229 build-aux/*) echo $f ;; \
1230 esac; \
1231 done | sed -e 's,^build-aux/,,'`
1232 if test -n "$buildaux_files"; then
1233 sed_prepend_auxdir='s,^,$(top_srcdir)/'"$auxdir"'/,'
1234 echo "EXTRA_DIST += "`echo "$buildaux_files" | sed -e "$sed_prepend_auxdir"`
1235 echo
1236 fi
1226 ;; 1237 ;;
1227 esac 1238 esac
1228 } 1239 }
1229 1240
1230 # func_get_include_directive module 1241 # func_get_include_directive module