diff options
| -rwxr-xr-x | make-dist | 6 |
1 files changed, 4 insertions, 2 deletions
| @@ -231,7 +231,7 @@ then | |||
| 231 | fi | 231 | fi |
| 232 | 232 | ||
| 233 | ### Make sure configure is newer than configure.in. | 233 | ### Make sure configure is newer than configure.in. |
| 234 | if [ "x`ls -t configure configure.in | head -1`" != "xconfigure" ]; then | 234 | if [ "x`ls -t configure configure.in | sed q`" != "xconfigure" ]; then |
| 235 | echo "\`./configure.in' is newer than \`./configure'" >&2 | 235 | echo "\`./configure.in' is newer than \`./configure'" >&2 |
| 236 | echo "Running autoconf" >&2 | 236 | echo "Running autoconf" >&2 |
| 237 | autoconf || { x=$?; echo Autoconf FAILED! >&2; exit $x; } | 237 | autoconf || { x=$?; echo Autoconf FAILED! >&2; exit $x; } |
| @@ -268,7 +268,9 @@ echo "Making lisp/MANIFEST" | |||
| 268 | files="$files $thisdir" | 268 | files="$files $thisdir" |
| 269 | fi | 269 | fi |
| 270 | done | 270 | done |
| 271 | head -1 $files | grep '^;' | sed -e 's/;;; //' | sort > MANIFEST) | 271 | for file in $files |
| 272 | do sed -n 's/^;;; //p; q' $file | ||
| 273 | done | sort > MANIFEST) | ||
| 272 | 274 | ||
| 273 | echo "Creating staging directory: \`${tempparent}'" | 275 | echo "Creating staging directory: \`${tempparent}'" |
| 274 | 276 | ||