diff options
author | bouyer <bouyer@pkgsrc.org> | 2005-03-07 15:59:08 +0000 |
---|---|---|
committer | bouyer <bouyer@pkgsrc.org> | 2005-03-07 15:59:08 +0000 |
commit | d24fdd5ce6ee360825de0eb963ae57e980b9b3dc (patch) | |
tree | 95fd80f6caf398519f79eeaf9adc141bbe6df5e1 /sysutils/xentools20/patches/patch-ah | |
parent | 7c36e0a0af20f3ca999139e9671e559a0c877761 (diff) | |
download | pkgsrc-d24fdd5ce6ee360825de0eb963ae57e980b9b3dc.tar.gz |
Initial import of xentools 2.0, for use with NetBSD as a xen2 domain0.
Diffstat (limited to 'sysutils/xentools20/patches/patch-ah')
-rw-r--r-- | sysutils/xentools20/patches/patch-ah | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/sysutils/xentools20/patches/patch-ah b/sysutils/xentools20/patches/patch-ah new file mode 100644 index 00000000000..43d3ce7d966 --- /dev/null +++ b/sysutils/xentools20/patches/patch-ah @@ -0,0 +1,27 @@ +$NetBSD: patch-ah,v 1.1.1.1 2005/03/07 15:59:08 bouyer Exp $ + +--- xentrace/Makefile.orig 2005-01-12 13:22:22.000000000 +0100 ++++ xentrace/Makefile 2005-01-22 18:44:45.000000000 +0100 +@@ -20,15 +20,15 @@ + all: $(BIN) + + install: all +- mkdir -p $(prefix)/usr/bin +- mkdir -p $(prefix)/usr/man/man1 +- mkdir -p $(prefix)/usr/man/man8 +- install -m0755 $(BIN) $(SCRIPTS) $(prefix)/usr/bin +- install -m0644 $(MAN1) $(prefix)/usr/man/man1 +- install -m0644 $(MAN8) $(prefix)/usr/man/man8 ++ mkdir -p $(prefix)/${PREFIX}/bin ++ mkdir -p $(prefix)/${PREFIX}/man/man1 ++ mkdir -p $(prefix)/${PREFIX}/man/man8 ++ install -m0755 $(BIN) $(SCRIPTS) $(prefix)/${PREFIX}/bin ++ install -m0644 $(MAN1) $(prefix)/${PREFIX}/man/man1 ++ install -m0644 $(MAN8) $(prefix)/${PREFIX}/man/man8 + + clean: + $(RM) *.a *.so *.o *.rpm $(BIN) + + %: %.c $(HDRS) Makefile +- $(CC) $(CFLAGS) -o $@ $< -L$(XEN_LIBXC) -L$(XEN_LIBXUTIL) -lxc -lxutil ++ $(CC) $(CFLAGS) -o $@ $< -L$(XEN_LIBXC) -L$(XEN_LIBXUTIL) -lxc $(LDFLAGS) -lxutil |