File: gen-file-lists

package info (click to toggle)
amanda 1%3A3.5.4-2.1
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 23,420 kB
  • sloc: ansic: 197,218; perl: 109,331; xml: 16,126; sh: 4,180; makefile: 2,811; awk: 502; lex: 407; yacc: 347; tcl: 118; sql: 19; sed: 16; php: 2
file content (10 lines) | stat: -rw-r--r-- 468 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
#!/bin/sh
# Generate file-list. Copied from autogen
cd config
for m4dir in amanda gettext-macros gnulib macro-archive; do
    echo "## this file is automatically generated by gen-file-lists" > "$m4dir/file-list"
    for f in $m4dir/*.m4; do echo "EXTRA_DIST += $f" >> "$m4dir/file-list"; done
done

echo "## this file is automatically generated by gen-file-lists" > "automake/file-list"
for f in automake/*.am; do echo "EXTRA_DIST += $f" >> "automake/file-list"; done