summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNicolás Reynolds <apoyosis@correo.inta.gob.ar>2010-11-25 15:52:43 -0300
committerNicolás Reynolds <apoyosis@correo.inta.gob.ar>2010-11-25 15:52:43 -0300
commiteb1613be26161b476769e00ae6e1cf2c40d516a4 (patch)
treecbfca3bc186f1e8b5bf992532af57333a149c2c2
parentaee2f52a0f9babaf3cc263e02a28905534edd37d (diff)
Fixed diff that tries to patch package-libre dir
-rwxr-xr-xlibrepatch2
1 files changed, 1 insertions, 1 deletions
diff --git a/librepatch b/librepatch
index 4e7af4f..08e7bb7 100755
--- a/librepatch
+++ b/librepatch
@@ -58,7 +58,7 @@ for package in $@; do
[[ -z ${pkgbase} ]] && pkgbase=${pkgname}
# Generate a diff file, no -r since we don't want to patch src/ nor pkg/
- diff -auN ./${package} ./${package}-libre >> $PATCHDIR/${pkgbase}-${pkgver}-${pkgrel}.patch
+ diff -auN ${package} ${package}-libre > $PATCHDIR/${pkgbase}-${pkgver}-${pkgrel}.patch
done