From ed96fd8ecc9af2b36f527f017473669d47511e47 Mon Sep 17 00:00:00 2001 From: Eric Wong Date: Tue, 26 Jan 2010 13:20:10 -0800 Subject: [PATCH] rename pcu-sync -> pcu-fsync Avoid confusing people with a 'sync' command since this is about fsync-ing individual files. --- .gitignore | 2 +- Makefile | 4 ++-- sync.c => fsync.c | 0 3 files changed, 3 insertions(+), 3 deletions(-) rename sync.c => fsync.c (100%) diff --git a/.gitignore b/.gitignore index e4a8a6f..3040a5d 100644 --- a/.gitignore +++ b/.gitignore @@ -1,6 +1,6 @@ pcu-mincore pcu-fadvise -pcu-sync +pcu-fsync GIT-VERSION-FILE *.1 *.html diff --git a/Makefile b/Makefile index 5d8a09e..0027fdd 100644 --- a/Makefile +++ b/Makefile @@ -22,9 +22,9 @@ LDFLAGS = -Wl,-O1 pcu-mincore: mincore.c compat-util.h pcu-fadvise: fadvise.c compat-util.h -pcu-sync: sync.c compat-util.h +pcu-fsync: fsync.c compat-util.h -PCU_BIN := pcu-fadvise pcu-mincore pcu-sync +PCU_BIN := pcu-fadvise pcu-mincore pcu-fsync $(PCU_BIN): $(CC) $(CFLAGS) $(LDFLAGS) -o $@+ $< diff --git a/sync.c b/fsync.c similarity index 100% rename from sync.c rename to fsync.c -- 2.11.4.GIT