We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Please excuse the lack of a pull request, but I am having too much fun hacking at the moment. Anyway, restoring compatibility is simple:
diff --git a/usr/src/make_src/Make/lib/makestate/src/Variant.mk b/usr/src/make_src/Make/lib/makestate/src/Variant.mk index a961615..d906559 100644 --- a/usr/src/make_src/Make/lib/makestate/src/Variant.mk +++ b/usr/src/make_src/Make/lib/makestate/src/Variant.mk @@ -71,9 +66,9 @@ install: all ${INSTALL} -d ${DESTDIR}/${PREFIX}/lib/$(VAR_DIR) ${RM} ${DESTDIR}/${PREFIX}/lib$(VAR_DIR)/$(DLIBNAME) ${INSTALL} $(DLIBNAME) ${DESTDIR}/${PREFIX}/lib$(VAR_DIR) - if [[ -n "$(VAR_DIR)" && ! -h "${DESTDIR}/${PREFIX}/lib/64" ]]; then \ + if [ -n "$(VAR_DIR)" -a ! -h "${DESTDIR}/${PREFIX}/lib/64" ]; then \ cd ${DESTDIR}/${PREFIX}/lib; \ - ln -s $$(basename $(VAR_DIR)) 64; \ + ln -s `basename $(VAR_DIR)` 64; \ else \ /bin/true; \ fi
By the way, how did this regression get past your testing?
The text was updated successfully, but these errors were encountered:
Merge pull request TritonDataCenter#11 from joyent/master
1dddf7d
update joyent commits
No branches or pull requests
Please excuse the lack of a pull request, but I am having too much fun hacking at the moment. Anyway, restoring compatibility is simple:
By the way, how did this regression get past your testing?
The text was updated successfully, but these errors were encountered: