You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
32 lines
1.0 KiB
32 lines
1.0 KiB
Index: GNUmakefile.in |
|
--- GNUmakefile.in.orig 2010-04-04 22:23:22.000000000 +0200 |
|
+++ GNUmakefile.in 2010-04-05 19:22:57.000000000 +0200 |
|
@@ -46,13 +46,13 @@ |
|
@if [ "${NETTLE_L}" = "no" ]; then echo "WARNING: ** No nettle library found; rdup-tr has no encryption"; fi |
|
|
|
rdup-up: $(OBJ_UP) $(HDR) |
|
- ${GCC} ${OBJ_UP} ${GLIB_LIBS} ${LIBS} -o rdup-up |
|
+ ${GCC} ${OBJ_UP} -o rdup-up ${GLIB_LIBS} ${LIBS} |
|
|
|
rdup-tr: $(OBJ_TR) $(HDR) |
|
- ${GCC} ${OBJ_TR} ${GLIB_LIBS} ${LIBS} -o rdup-tr |
|
+ ${GCC} ${OBJ_TR} -o rdup-tr ${GLIB_LIBS} ${LIBS} |
|
|
|
rdup: ${OBJ} ${HDR} |
|
- ${GCC} ${OBJ} ${GLIB_LIBS} ${LIBS} -o rdup |
|
+ ${GCC} -o rdup ${OBJ} ${GLIB_LIBS} ${LIBS} |
|
|
|
strip: |
|
strip ${CMD} |
|
Index: rdup-tr.c |
|
--- rdup-tr.c.orig 2010-04-04 22:23:22.000000000 +0200 |
|
+++ rdup-tr.c 2010-04-05 19:25:52.000000000 +0200 |
|
@@ -100,7 +100,7 @@ |
|
struct archive_entry *entry; |
|
struct stat *s; |
|
struct rdup *rdup_entry = NULL; |
|
- GSList *hlinks, *hl = NULL; |
|
+ GSList *hlinks = NULL, *hl = NULL; |
|
GHashTable *trhash; /* look up for encrypted/decrypted strs */ |
|
|
|
delim = '\n';
|
|
|