diff options
author | P. J. McDermott <pjm@nac.net> | 2012-04-23 12:54:01 (EDT) |
---|---|---|
committer | P. J. McDermott <pjm@nac.net> | 2012-04-23 12:54:01 (EDT) |
commit | 1e0b04ab25535b9c443f3e41dbffb01d4478767b (patch) | |
tree | 8cbae1abb99c962278c6e864c29f73d96711b372 /src | |
parent | 5a5b9a46d63d8d494a89ad9ce4813da7081077e5 (diff) |
Be more liberal in build stamp naming.
After each build, leave behind any files in the work area named
"*stamp", rather than just "*.buildstamp".
Diffstat (limited to 'src')
-rw-r--r-- | src/opkbuild.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/opkbuild.sh b/src/opkbuild.sh index 6838a82..16fc95d 100644 --- a/src/opkbuild.sh +++ b/src/opkbuild.sh @@ -348,7 +348,7 @@ for binpkgdir in ../*.pkg/; do # Clean up everything except the build stamps. for file in *; do case ${file} in - *.buildstamp) + *stamp) ;; *) ${uid0_cmd} rm -Rf ${file} || error "${binpkg}" |