diff options
| author | Joseph Richey <joerichey@google.com> | 2017-08-31 14:51:37 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2017-08-31 14:51:37 -0700 |
| commit | 5285a8c451ef660f932e9f1823ad7da52ad25b74 (patch) | |
| tree | 134f1a6a8913b3c0049d0e1afa7e9d3e557274e2 /Makefile | |
| parent | fe92c00f897c2c6b20d841c8a8f83ef6a247d18c (diff) | |
| parent | 0fcb6601ca66b9e4c2349392663fe9baa30dbbc7 (diff) | |
Merge pull request #54 from google/uuid
Use `/dev/disk/by-uuid` to get UUID links to other filesystems
Diffstat (limited to 'Makefile')
| -rw-r--r-- | Makefile | 8 |
1 files changed, 3 insertions, 5 deletions
@@ -59,9 +59,9 @@ endif # builds the C code with high optimizations, and C warnings fail. # LDFLAGS # Change the flags passed to the C linker. Empty by default. -# For example: -# make fscrypt "LDFLAGS = -static -luuid -ldl -laudit -lpthread" -# will build a static binary. +# For example (on my system with additional dev packages): +# make fscrypt "LDFLAGS = -static -ldl -laudit -lcap-ng" +# will build a static fscrypt binary. # GO_FLAGS # Change the flags passed to "go build". Empty by default. # For example: @@ -179,8 +179,6 @@ test-setup: sudo mkdir -p $(MOUNT) sudo mount -o rw,loop $(IMAGE) $(MOUNT) sudo chmod +777 $(MOUNT) - # Add UUID to BLKID cache - sudo blkid $$(df $(MOUNT) --output=source | grep /dev/) test-teardown: sudo umount $(MOUNT) |