diff options
-rw-r--r-- | build/parseBuildInstallClean.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/build/parseBuildInstallClean.c b/build/parseBuildInstallClean.c index 199571720..5ecf77c4a 100644 --- a/build/parseBuildInstallClean.c +++ b/build/parseBuildInstallClean.c @@ -59,7 +59,7 @@ int parseBuildInstallClean(rpmSpec spec, int parsePart) "for s in guess sub; do\n" " for c in $(find -maxdepth 8 -name \"config.$s\"); do\n" " grep -q config-patches@ $c || continue\n" - " timestamp=$(sed -n \"/^timestamp=/{s///;s/[-'\\\"]//g;p;q;}\" $c)\n" + " timestamp=$(sed -n \"/^timestamp=/{s///;s/[-'\\\"]//g;p;q;}\" $c | tr -d '\r')\n" " test -n \"$timestamp\" || timestamp=0\n" " test $timestamp -ge $mints || install -m 755 $ref/config.$s $c\n" " done\n" |