diff options
author | Roland McGrath <roland@gnu.org> | 2004-09-22 22:41:09 +0000 |
---|---|---|
committer | Roland McGrath <roland@gnu.org> | 2004-09-22 22:41:09 +0000 |
commit | a0d24ebc124a3ca47b257109fce14fc81a0cf363 (patch) | |
tree | 9ca1b9abb096802125b4c74925642c2147d9f758 | |
parent | 1e96287768ceebc8d4515166c4453b07088e5ee8 (diff) | |
download | glibc-a0d24ebc124a3ca47b257109fce14fc81a0cf363.tar.gz glibc-a0d24ebc124a3ca47b257109fce14fc81a0cf363.tar.xz glibc-a0d24ebc124a3ca47b257109fce14fc81a0cf363.zip |
Some tweaks for update
-rw-r--r-- | fedora/.cvsignore | 5 | ||||
-rw-r--r-- | fedora/Makefile | 4 |
2 files changed, 7 insertions, 2 deletions
diff --git a/fedora/.cvsignore b/fedora/.cvsignore new file mode 100644 index 0000000000..02a03c3ffc --- /dev/null +++ b/fedora/.cvsignore @@ -0,0 +1,5 @@ +glibc-*.tar.bz2 +glibc-*.src.rpm +glibc-fedora.patch +glibc.spec +update.log diff --git a/fedora/Makefile b/fedora/Makefile index 05f308f13c..c5b90f348c 100644 --- a/fedora/Makefile +++ b/fedora/Makefile @@ -43,8 +43,8 @@ update: echo "$(glibc-branch)-sync-date := $$now"; \ $(if $(on-branch),echo "$(glibc-branch)-sync-tag := $$new";) \ ) > branch.mk; \ - cd ..; cvs -q update -d -P -j"$$old" -j"$$new" \ - 2>&1 | tee redhat/update.log + cd ..; (set -x; cvs -q update -d -P -j"$$old" -j"$$new") \ + 2>&1 | tee fedora/update.log commit-merge: cd ..; cvs -Q commit -m"Updated to $(snapshot-id)" |