diff options
author | Jani Välimaa <wally@mageia.org> | 2020-05-01 15:40:06 +0300 |
---|---|---|
committer | Jani Välimaa <wally@mageia.org> | 2020-05-01 15:40:06 +0300 |
commit | f3c195a341295cfcf0521f05d562488ad6c67b3f (patch) | |
tree | c8b4a24021229f1222947f529bc1434f2482c1ff | |
parent | bbbf555a9bc3d46a0502d4a2e4963a1abf834879 (diff) | |
download | spec-helper-f3c195a341295cfcf0521f05d562488ad6c67b3f.tar spec-helper-f3c195a341295cfcf0521f05d562488ad6c67b3f.tar.gz spec-helper-f3c195a341295cfcf0521f05d562488ad6c67b3f.tar.bz2 spec-helper-f3c195a341295cfcf0521f05d562488ad6c67b3f.tar.xz spec-helper-f3c195a341295cfcf0521f05d562488ad6c67b3f.zip |
Makefile: remove double slashes
-rw-r--r-- | Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -35,8 +35,8 @@ install: $(MACROS_FILES) install -p -m 755 $(BIN_FILES) $(DESTDIR)$(bindir) install -d -m 755 $(DESTDIR)$(pkgdatadir) install -p -m 755 $(SCRIPT_FILES) $(DESTDIR)$(pkgdatadir) - install -d -m 755 $(DESTDIR)/$(rpmmacrodir) - install -p -m 644 $(MACROS_FILES) $(DESTDIR)/$(rpmmacrodir) + install -d -m 755 $(DESTDIR)$(rpmmacrodir) + install -p -m 644 $(MACROS_FILES) $(DESTDIR)$(rpmmacrodir) spec-helper.macros: spec-helper.macros.in sed -e 's:@pkgdatadir@:$(pkgdatadir):' < $< > $@ |