mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-01-17 22:52:40 +01:00
- Binaries are prefixed with "o" to avoid conflicting with vim (ex, view) - The makefile patch to avoid /var/tmp mods was updated with accurate notes and renamed (rm-recover.patch). A PR has been opened upstream. - A makefile patch to create relative rather than absolute symlinks for ex, view. A PR has been opened upstream. - A makefile patch to handle DESTDIR. A PR has been opened upstream.
23 lines
837 B
Diff
23 lines
837 B
Diff
Use relative symlinks for view, ex
|
|
|
|
Create symlinks like:
|
|
/usr/bin/ex -> vi
|
|
/usr/bin/view -> vi
|
|
|
|
rather than:
|
|
/usr/bin/ex -> /usr/bin/vi
|
|
/usr/bin/view -> /usr/bin/vi
|
|
|
|
--- a/GNUmakefile
|
|
+++ b/GNUmakefile
|
|
@@ -616,3 +616,3 @@
|
|
@$(VERBOSE); $(TEST) -x "$(PREFIX)/bin/$(BINPREFIX)vi$(BINSUFFIX)" && \
|
|
- $(LNS) "$(PREFIX)/bin/$(BINPREFIX)vi$(BINSUFFIX)" \
|
|
+ $(LNS) "$(BINPREFIX)vi$(BINSUFFIX)" \
|
|
"$(PREFIX)/bin/$(BINPREFIX)ex$(BINSUFFIX)"
|
|
@@ -623,3 +623,3 @@
|
|
@$(VERBOSE); $(TEST) -x "$(PREFIX)/bin/$(BINPREFIX)vi$(BINSUFFIX)" && \
|
|
- $(LNS) "$(PREFIX)/bin/$(BINPREFIX)vi$(BINSUFFIX)" \
|
|
+ $(LNS) "$(BINPREFIX)vi$(BINSUFFIX)" \
|
|
"$(PREFIX)/bin/$(BINPREFIX)view$(BINSUFFIX)"
|