]> git.pld-linux.org Git - packages/rpm-build-tools.git/commitdiff
Check for name/CVS dir when looking for sticky name. Old test failed if under name...
authorArkadiusz Miśkiewicz <arekm@maven.pl>
Thu, 8 Mar 2012 21:03:42 +0000 (21:03 +0000)
committercvs2git <feedback@pld-linux.org>
Sun, 24 Jun 2012 12:13:13 +0000 (12:13 +0000)
Changed files:
    builder.sh -> 1.673

builder.sh

index 00be8fa2fe8f9b5b5e843d68d1fd823b39abdbed..6600290f804be2efbc75d4d0283b10de4dbf59ed 100644 (file)
@@ -2463,7 +2463,7 @@ while [ $# -gt 0 ]; do
        esac
 done
 
-[ -d "$ASSUMED_NAME" ] && CVS_ENTRIES="$ASSUMED_NAME/CVS/Entries" || CVS_ENTRIES="CVS/Entries"
+[ -d "$ASSUMED_NAME/CVS" ] && CVS_ENTRIES="$ASSUMED_NAME/CVS/Entries" || CVS_ENTRIES="CVS/Entries"
 if [ -f "$CVS_ENTRIES" ] && [ -z "$CVSTAG" ]; then
        CVSTAG=$(awk -vSPECFILE=$(basename $SPECFILE) -F/ '$2 == SPECFILE && $6 ~ /^T/{print substr($6, 2)}' ${CVS_ENTRIES})
        if [ "$CVSTAG" ]; then
This page took 0.043302 seconds and 4 git commands to generate.